Forum Moderators: phranque
Dayo_UK tells me that my sudden drop in SERPs might be due to a Canonical url problem.
http://www.mysite.example.com/ has a PR2
While
http://mysite.example.com/ has a PR4
I have a working .htaccess file, but attempts to include a RewriteEngine command do not work. The same command works on my other websites. I can have "deny from" commands, and custom error pages.
Is there any way I can fixed the canonical URL problem?
[edited by: jdMorgan at 9:36 pm (utc) on May 20, 2005]
[edit reason] example.com [/edit]
order allow,deny
Allow from all
deny from 12.345.67.89
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^example\.com
rewriterule (.*) http://www.example.com/$1 [R=301,L]
Allow from all
order allow,deny
allow from all
[edited by: jdMorgan at 9:37 pm (utc) on May 20, 2005]
[edit reason] example.com [/edit]