Debt Consolidation - Market and finance - vBulletin - Download Anime - Debt Consolidation

PDA

View Full Version : Yahoo Canonical URL PROBLEMS!?


alphacooler
Nov 3rd 2005, 9:43 am
My site shows up in the Y Serps as "sitename.com" rather than "www.sitename.com".

What can be done here besides throwing up a redirect now?
Can I contact Y?

Thanks.

saintdw
Nov 3rd 2005, 1:44 pm
I think redirect is the best option.

Heck i redirect all my domains to www. always.

alphacooler
Nov 3rd 2005, 3:43 pm
Anyone have a time frame on how long it takes Y to figure things out (i.e. show "www" in the serps instead of the non).

thanks.

YoungSmeagol
Nov 3rd 2005, 6:55 pm
Anyone have a time frame on how long it takes Y to figure things out (i.e. show "www" in the serps instead of the non).

thanks.

The most likely reason why they don't include the www. is because they might rank yoursite.com higher than www.yoursite.com. You might have Quantity/Quality Links pointing to it.

I don't think the 301 redirect will transfer pagerank anymore. Atleast that is what is going around in the forums.

webdesign2005
Nov 3rd 2005, 8:25 pm
You could use mod rewrite to put a www.on every page when they enter your site from domain.com they are instantly redirected to www.domain.com
It is very easy to do and only a few lines of code need be added to your .htaccess file.

siraxi
Jan 13th 2006, 5:46 am
what are those lines to add in the .htaccess file ?

Jean-Luc
Jan 13th 2006, 5:53 am
This is what I use:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.mydomain.com$
RewriteRule ^(.*) http://www.mydomain.com/$1 [QSA,L,R=301]

Jean-Luc

siraxi
Jan 13th 2006, 6:02 am
Thanks! it really works (I've been redirected to www.mydomain.com :p )