I have been googling a lot about this, but I can't find a specific answer to my question. I have a domain registered with a company different than Google Apps, and I would like to map all possible URLs from that domain to my App Engine app.
For instance, if a user writes www.mydomain.com/helloworld I want this request to be answered by www.myappid.appspot.com/helloworld (the URL in the address bar should remain www.mydomain.com/helloworld though). I don't care about subdomains, just the unpredictable words users might write after the .com part of the URL (e.g., www.mydomain.com/randomphrase mapping to www.myappid.appspot.com/randomphrase).
There must be a way to do it, because the Royal Wedding website was built on App Engine and they do exactly that (http://www.officialroyalwedding2011.org). They don't use subdomains for the main options of the website. For example: http://www.officialroyalwedding2011.org/tag/procession/page/1 is the URL for the procession.
Can I do this without a Google Apps domain? I did some research on CNAME records but it seems to work only for subdomains. Other questions in the website recommend reading this http://code.google.com/appengine/docs/domain.html But again, it talks about subdomains and it doesn't answer this particular question. How do I do it?