Hello,
You need to remove the redirection mydomain.com/<http://mydomain.com/foo/bar>
-> www.mydomain.com in Godaddy and use a middelware.
An example:
class SubDomainMiddleware(object):
def process_request(self, request):
bits = request.get_host().split('.')
subdomain = bits[0]
if subdomain <> "www":
return HttpResponsePermanentRedirect"http://www.mydomain.com/%s"
% (request.get_full_path()))
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.