I'm working on a google app engine project.
My app is working and looking correct locally, but when I try to upload images in an image directory, they're not being displayed at appspot.
as a little trouble-shoot, I put an html page in "/images/page2.html" and I can load that page at the appspot, but my pages don't display my images. So, it's not a problem with my path.
As another sanity check, I'm also uploading a stylesheet directory with .css code in it, and that's being read properly.
I have a suspicion that the problem lies in my yaml file.
Any ideas?
I don't want to paste all the code here, but here are some of the key lines. the first two work fine. the third does not work.
<link type="text/css" rel="stylesheet" href="/stylesheets/style.css" />
<a href="/images/Page2.html">Page 2</a>
<img src="/images/img.gif">
This is my app.yaml file
application: myApp
version: 1
runtime: python
api_version: 1
handlers:
- url: /stylesheets
static_dir: stylesheets
- url: /images
static_dir: images
- url: /.*
script: helloworld.py