In some cases, google treats site.com and www.site.com as two seperate sites... Note, in some cases. The way I see it, there's no point in taking chances... You might as well do a perm redirect using .htaccess
If you don't know how, simply implement this in your .htaccess file, located in the root of your domain:
Google will transfer possible PR from the non www version, to the desired www versionRewriteEngine on
RewriteCond %{HTTP_HOST} !^(.*)\.site\.com$ [NC]
RewriteRule ^(.*)$ http://www.site.com/$1 [R=301,L]






Reply With Quote





Bookmarks