I have the following app.yaml file : - url: /main2.py script: /main2.py - url: /.* script: main.py
I want to process URL/main2.py with main2.py, and all the other requests URL/blabla with main.py. I can't get either working, I get 404 errors in the log in both scenarios. 1. Shouldn't the /. pattern match anything except main2.py and process everything? 2. Doesn't /main2.py match main2.py in the root directory? Am I doing something wrong? I have checked the line endings in app.yaml by the way, and they are Unix line endings. Thanks, -- 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.
