Redirect incoming links with .htaccess to prevent duplicate content penalties
Create a .htaccess file under htdocs, with following content
1 2 | RewriteEngine on RewriteRule ^(.*)$ http://www.zeldor.biz/$1 [L,R=301] |
Each request to your site will be redirected to www.zeldor.biz
Leave a Reply