You can set the DNS record like mod_rewrite in Apache? Where?

anything.myapp.com   >  redirect to   >   myapp.appspot.com/anything

dynamically, hundreds of thousands of accounts...

Or do I need the Apache server to redirect?

Thanks.

link|improve this question
not sure what this has to do with google apps or app engine? your question itself is also extremely unclear. – Chris Farmiloe Mar 13 '11 at 15:50
feedback

migrated from stackoverflow.com Mar 16 '11 at 13:39

This question came from our site for professional and enthusiast programmers.

1 Answer

There shouldn't be any need to do this, because there's no implicit association between URL and filename in App Engine - you can simply design your app with the URL routing you want in the first place.

If you do absolutely need to do this, you can write some WSGI middleware (in Python), or a servlet filter (in Java) that modifies incoming requests before they're handled.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown