Abhay Jatin Doshi
Abhay Jatin Doshi

Reputation: 484

Setup Google App Engine as a page on my domain

I am using a free domain from cu.cc and also free hosting provided by bytehost. I want to add google app as a page and not for the whole domain. Like the app should open in www.something.cu.cc/google-app-1 and so on. Is it possible? If so how do i set it up?

Upvotes: 2

Views: 53

Answers (2)

Aaron
Aaron

Reputation: 821

The only way I could think to do it would be to put an iframe on that page e.g.

<iframe src="https://1-0-1-dot-someapp.appspot.com/"></iframe>

more details on iframes can be found at http://www.w3schools.com/tags/tag_iframe.asp

Upvotes: 1

Dan Cornilescu
Dan Cornilescu

Reputation: 39834

No, it is not possible, in the sense that you won't be able to have some other host serve some other page on that same domain, because the Adding a custom domain for your application procedure only takes a domain name, without a file/page path and mapping is done at DNS level (i.e. entire server/host level).

Upvotes: 1

Related Questions