I have an images subdirectory configured with either of the two setups: - url: /images/(.*) static_files: images/\1 upload: images/(.*)
- url: /images static_dir: images Both of them works fine for real files (ie: http://localhost:8080/images/something.png) but I'm not sure how to setup a page if an image doesn't exist (ie: http://localhost:8080/images/fake.png). I have this to handle the most general case but fake.png isn't caught by it: - url: / static_files: index.html upload: index.html - url: /.* script: error.py -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
