3
votes
Google App Engine: Redirect All URLs
you can redirect all requests easily with a python handler. Something like
class FormHandler(webapp.RequestHandler):
def post(self):
if processFormData(self.request):
se …
