f.farah
f.farah

Reputation: 97

Google AppEngine Domain aliasing and instances

In my current hosting, each url is a stand-alone project in a separate folder.

example.com/-> Website project

example.com/admin -> Admin Panel project

example.com/demo -> App Demo project

So, each url should point to a different project in AppEngine.

How do I configure that when there's no global .htaccess?

Upvotes: 1

Views: 50

Answers (1)

Julian Go
Julian Go

Reputation: 4490

You cannot map a Google App Engine project to some URL path, only to a subdomain. So you could map www.example.com, admin.example.com, and demo.example.com to different GAE apps, and make your naked domain(example.com) redirect to www.example.com.

If this is not possible, maybe you can use a proxy or CDN to root the requests differently depending on the URL, but this is harder to maintain and you would loose the auto-scalibility features of GAE.

Upvotes: 1

Related Questions