I wont users that writing http://site.com will be transfered to http://www.site.com . someone can tell me how to do that please?
If you are using an apache server, you can do it with .htaccess. Here is a tutorial on how to do it with .htaccess: http://www.webweaver.nu/html-tips/web-redirection.shtml
If you are on apache server and your hosting provider allow .htaccess then place this on htacces. RewriteCond %{HTTP_HOST} !^fully\.qualified\.domain\.name [NC] RewriteCond %{HTTP_HOST} !^$ RewriteRule ^/(.*) http://fully.qualified.domain.name/$1 [L,R] Code (markup): fully qualified domain name = www.domainname.com
Is this the same as a 301 redirect? If not wouldn't be better to do the 301? http://forums.digitalpoint.com/showthread.php?t=44692 http://forums.digitalpoint.com/showthread.php?t=57409