Running Multiple Google App Engine Apps from one Domain
Posted
by awegawef
on Stack Overflow
See other posts from Stack Overflow
or by awegawef
Published on 2010-04-13T00:42:40Z
Indexed on
2010/04/13
0:52 UTC
Read the original article
Hit count: 291
google-app-engine
I would like to have the following:
myrootsite.appspot.com
myrootsite.appspot.com/app1
myrootsite.appspot.com/app2
etc.
Is this possible? I know I could just make /app1
be handled by app1
, but then the redirects and everything wouldn't work unless I explicitly used redirect('/app1')
instead of the current redirect('/')
.
Is there a way I can just upload my current apps (app1
, app2
, etc.) to the root site and have them work regularly?
Thanks in advance
© Stack Overflow or respective owner