Greenguy's Board


Go Back   Greenguy's Board > Search Engines
Register FAQ Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rate Thread Display Modes
Prev Previous Post   Next Post Next
Old 2007-08-20, 08:56 AM   #10
Halfdeck
You can now put whatever you want in this space :)
 
Halfdeck's Avatar
 
Join Date: Oct 2004
Location: New Haven, CT
Posts: 985
Send a message via ICQ to Halfdeck
Quote:
no www/non-www redirect installed
If you have people linking to both "http://www.example.com" and "http://example.com", you're splitting your backlinks, because to Google, those are two unique URLs.

For example, if site A links to "example.com" and site B links to "www.example.com", you really only have one back link to example.com and one back link to "www.example.com". On the other hand, if both site A and B link to "www.example.com", then you have two backlinks pointing at "www.example.com".

So if you have links pointing only to one version, you'd end up with a much stronger page.

Same deal with example.com/ and example.com/index.html - if you refer to both URLs you're again splitting link juice and making both of those URLs weaker. My preference is to link internally to example.com/ and not example.com/index.html.

So first, you want to be careful how you link to your own pages.

Second, install a 301 redirect from www to non-www (or vice versa, depending on which version you prefer) so that all links pointing to the www version will be credited to the non-www version.

To do that, you can add a mod_rewrite in your .htaccess (non-www to www):
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
(replace example.com with your own URL)

Or (www to non-www)

Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule (.*) http://example.com/$1 [R=301,L]
(I prefer the www version, so I haven't tested this)

Use a HTTP header checker to make sure your code is working. You can also use Xenu Linksleuth to make sure your site is crawlable after the 301 install.

Or you can go into Google's Webmaster Tools and set your Preferred domain. That will take care of Google, but you'll still need to install a 301 redirect for MSN/Yahoo.
__________________
Success is going from failure to failure without a loss of enthusiasm.
Halfdeck is offline   Reply With Quote
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 12:54 AM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc