Posts: 2,114
Name: Matt. (>',')>
Location: London, England.
|
google sees www.domain.com and domain.com as different sites. As each of these urls (siites) has a different amount of bcklinkks they have a different page rank..
Use a modrewrite to keep them all the same.
Put this is a htaccess file to focuus all PR to www.domain.com, Its a 301 permenent redirect, It should also pass on page rank
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\..* [NC]
RewriteRule ^(.*) http://www.%{HTTP_HOST}/$1 [R=301]
Edit:
Also, Its imporatnt when building your site that all internal links link to the same url.
Its no good having a link to domain.com on one page and a link to www.domain.com on another.
Last edited by stOx : 02-28-2006 at 02:43 AM.
|