Forum Moderators: open
I'm a volunteer web designer. Our site has a lousy page rank (but I'm working on it!) A friendly site just added a link to our site. It checked their page rank to see how much benefit it would be and discovered an interesting phenomena:
[name_of_group_deleted.org...] returns "Page not ranked ." However, [name_of_group_deleted.org...] returns a FIVE! Adding or deleting "www" changes the PR even though they both work....
I tried it on the sites that I develop and it doesn't make any difference.
Welcome to WebmasterWorld. [webmasterworld.com]
Yes it is sometimes difficult to find the right stuff in the Google forum. We are working on this [webmasterworld.com].
Brett has put up the WebmasterWorld Google Knowledgebase V2 [webmasterworld.com].
You will find the right awnswer under the [Webmasters] subtitle. Plus a lot more.
Enjoy!
domain.com had a lower pagerank that www.domain.com
Today they are exactly the same, as is www.domain.com/index.html -- and .../index.htm, even though I have no such .htm page.
I did nothing in the meantime. If Google did not change in the past couple weeks should I assume my host did something different that they didn't tell me about (tho I'm glad they did)?
If on a UNIX server forget everything you've read so far and add these 3 lines into your .htaccess file in the root directory. It requires mod_rewrite to be installed mind you but if you're paying for hosting then it damned well should be.
It will catching anything thats not "site.com" and map it to "site.com", it will also redirect to the correct page.
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.site\.com
RewriteRule ^.*$ [site.com%{REQUEST_URI}...] [R=301,L]
Consider mod-rewriting the other to the one you picked, but for users sake have both of them resolve and work somehow.
My opinions .. :)