Static Image Folder With Google App Engine
There are already a lot of post dealing with this issue but I wasn't able to find a solution to my problem. I am using the Google App Engine Launcher to create a small web applicat
Solution 1:
Try reordering the handlers:
-url:/imagesstatic_dir:images-url:/.*script:app.my_app
Patterns are evaluated in the order they appear in the app.yaml file, from top to bottom. The first mapping whose pattern matches the URL is the one used to handle the request.
Post a Comment for "Static Image Folder With Google App Engine"