I would like to develop a twitter-like application where users can showcase their work on a simple interface such as twitter. Obviously, I also want to provide a simple URL for each user (e.g. domain.com/myuser), but I found that GAE no longer resolves bare domains, so I redirected DNS according to google docs http: // www. google.com/support/a/bin/answer.py?hlrm=en-in&answer=61057therefore, when users type in the .com domain, they are redirected to www.domain.com. The problem is that when they type domain.com/myuser, they are also redirected to www.domain.com and the username is lost, which is very annoying, so I would like to know if you can recommend me an acceptable solution. Should I catch the referrer URL to find what the user entered into the bare domain? Is there any other solution?
source
share