Have a legacy GAE application running Python 2.5 and Master/Slave.
Trying to get url routing working, this is what I have in app.yaml:
application: theapp
version: 1
runtime: python
api_version: 1
handlers:
- url: /rest/.*
script: np/resources/rest.py
Would like for this to work with urls like:
http://localhost:8080/rest/something
But I keep getting a 404 error
According to the app engine documentation, this should work.
Any ideas?
