How do I configure the app.yaml file to redirect all URLs to another URL? For example I want http://test.appspot.com/hello or http://test.appspot.com/hello28928723 to redirect to http://domain.com.
I am only serving static files at the moment. Here is my app.yaml file:
application: testapp version: 1 runtime: python api_version: 1 handlers: - url: (.*)/ static_files: static1/index.html upload: static/index.html - url: / static_dir: static
2.1m questions
2.1m answers
60 comments
57.0k users