I just saw Revision b6d1599cd0: changed links from web2py.com to
www.web2py.com

That is not the solution. No needs for changing links manually.
The solution is the 301 redirect --> 
http://en.wikipedia.org/wiki/URL_redirection

With a meta redirect the page with the redirect issues a 200 OK status
and some other mechanism moves the browser over to the new URL. With a
200 OK on both pages, the search engine wants to index both the start
page and the target page
The 301 redirect simply issues a Permanently Moved message in the HTTP
header which tells the search engine to only index the target URL.

Actually if you go to http://web2py.com/*, you are NOT redirected to
http://www.web2py.com/*

I have 301 redirect well done on http://web2py.es  ---> you are
redirected to http://www.web2py.es automatically. Therefore no needs
for changing manually.

this is my .htaccess:
-------------------------
AddHandler fcgid-script .fcgi
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^web2py\.es$ [NC]
RewriteRule ^(.*)$ http://www.web2py.es/$1 [R=301,L]
RewriteRule ^dispatch\.fcgi/ - [L]
RewriteRule ^(.*)$ dispatch.fcgi/$1 [L]



Reply via email to