FrankBr
FrankBr

Reputation: 896

Url rewriting in GAE

Do you know if it's possible to get an url rewrited using GAE and Python in a way that it appears different in also the domain part?

So, for example,

www.aaa.appspot.com to www.bbb.com ??

Upvotes: 0

Views: 121

Answers (2)

Aaron
Aaron

Reputation: 2351

If you want to have requests for .app-id.appspot.com handled differently to .app-id.appspot.com you can use webapp2's DomainRoute. The same would apply to or example.com vs example2.com if you had two custom domains pointing to your app.

See: http://webapp-improved.appspot.com/guide/routing.html#domain-and-subdomain-routing

That way you can have one AppEngine app that handles requests for both example.com and example2.com (or just handles redirects from example1.com to example2.com).

Upvotes: 0

Peter Knego
Peter Knego

Reputation: 80340

This is not Url rewriting, it's custom domains which are supported on GAE.

Upvotes: 4

Related Questions