I\'m using Python 2.7 in Google App Engine and can\'t seem to get my app.yaml file set up right.
My goal is so that if I go to http://localhost/carlos/
I ge
I was able to determine the solution and figured I'd post it for anyone out there.
In my carlos.py file I needed to replace:
app = webapp2.WSGIApplication([('/', MainHandler)],
debug=True)
with
app = webapp2.WSGIApplication([('/carlos/', MainHandler)],
debug=True)
It appears that the first argument for the WSGIApplication is referring to the TOTAL path from your root web address as opposed to the INCREMENTAL path from which it was originally directed.
I'm selecting this answer over what was provided by Littm because I'd like to keep using WSGI