You need to specify a handler in your app.yaml

for instance, this is how I map my favicon.ico

handlers:
- url: /favicon.ico
  static_files: favicon.ico
  upload: favicon.ico
  mime_type: image/x-icon

This ensures the file gets uploaded, is set as a static file type and
maps it to a URL.

The better way to do this is put all of your static files (read JPG
files) into a subdirectory, and make a generic handler for that
directory:

url: /static
  static_dir: static

That way any file in that directory will be considered static and
viewable from a HTML page.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to