[google-appengine] Re: Naked Domains

2008-09-07 Thread Paul Kinlan
The problem that I have is that if the host doesn't support redirects there is little that we can do. For instance, my site eweri.com really needs to have the naked domain. I am not a DNS expert, so I am not to sure what we can do otherwise. Paul. 2008/9/5 Ross M Karchner <[EMAIL PROTECTED]> >

[google-appengine] Re: Naked domains and Network Solutions

2009-06-11 Thread Bagicha L
how do i get it my app say 'blah' hosted at blah.appspot.com to say something like blah.mydomain.com? looks like you have it working? thanks! On Jun 11, 5:01 pm, Bemmu wrote: > I am trying to use Google App Engine to host my pre-existing site, and > got it to work on "fi.bemmu.com", but not "bem

[google-appengine] Re: Naked domains and Network Solutions

2009-06-11 Thread Antoniov
On 6月12日, 上午8时01分, Bemmu wrote: > tells me that "Web Forwarding cannot point to its parent domain" I didn't see how this could happen, what you did was fowarding a parent domain to a child domain, NOT backwards. Did you try to foward fi.bemmu.com to bemmu.com? If not, you should consul

[google-appengine] Re: Naked domains and Network Solutions

2009-06-11 Thread nearmars
@Bemmu If I understand your question correctly you want to redirect incoming traffic to your naked domain (bemmu.com) to your gae domain (fi.bemmu.com). I would use a .htaccess file mod_rewrite. Like: RewriteEngine on RewriteRule (.*) http://fi.bemmu.com [R=301,L] Here's a cheat sheet for creati