How can I prevent a user from accessing my app at example.appspot.com and force them to access it at example.com? I already have example.com working, but I don't want users to be able to access the appspot domain. I'm using python.
|
feedback
|
|
You can check if You could deploy this check-and-redirect-if-needed (or other behavior alteration of your choice) in any of various ways (decorators, WSGI middleware, inheritance from an intermediate base class of yours that subclasses | |||
|
feedback
|
|
The code posted above has two problems - it tries to redirect secure traffic (which isn't supported on custom domains), and also your cron jobs will fail when Google call them on your appspot domain and you serve up a 301. I posted a slightly modified version to my blog: http://blog.dantup.com/2009/12/redirecting-requests-from-appid-appspot-com-to-a-custom-domain I've included the code below for convenience.
| |||||||
feedback
|
| |||||||||
feedback
|
|
i have no idea how mysql game does it. it looks like a redirect at appspot. edit: i just looked at the headers, and its returning a
So it must be possible to configure appspot to return this | |||
feedback
|