Forum Moderators: open
response.redirect "http://www.<domain name>.com"
However, could this problem be solved if the URL is included in the querystring?
ie
response.redirect "http://www.<domain name>.com?url=http://www.<domain name>.com
As always, look forward to any comments
Cheers, Jgar
The problem is most likely that ASP will send a 302 status code when you do a response.redirect "http://www.<domain name>.com". You need to make sure a HTTP/1.1 301 Moved Permanently status code is sent as the first line of the HTTP response.
Google not following an ASP server-side redirect
If I were Google I wouldn´t know how to follow ASP server side redirects as well since I would only understand HTTP. And I would know of the redirect only if I am being told. If everything happens on the server, how would I know that the server wants me to request a resource identified by a different URI. ;)
Andreas