views:

66

answers:

2

In google app engine can I have www.domain.com point to version X of my app, and beta.domain.com point to version Y?

If so, how could I do this?

+2  A: 

No, this is not currently supported. Non-default versions are only accessible as appspot subdomains.

Nick Johnson
Fh
opened one at http://code.google.com/p/googleappengine/issues/detail?id=3323
Fh
A: 

I have my domain hosted at 1and1.com and redirects subdomains to different versions in appengine.

www.example.com goes to the main version
beta.example.com goes to a beta version

You will need to do this through a third-party DNS

mcotton
This is doing HTTP-level redirection, right? The appspot URL will show in the browser? (Otherwise this seems to conflict with Nick's accepted answer)
Thilo
Nick is correct, the appspot url will still show in the URL
mcotton