Quote:
Originally Posted by vendot
Vick,
Thanks for this..... very appreciated. Ive done that and it works!
|
you are welcome dude..
Quote:
Originally Posted by vendot
One last question:
(1) I get people to link to my domain.com (without www.) Now if i want to get PR only on domain.com is there a way to use htaccess so that everything www.domain.com ends up at domain.com ??? (including all the PR)
|
Use this code in .htaccess
Code:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]