How to set .htaccess 301 redirection? ~ Interview Questions & Answers

Monday, April 6, 2009

How to set .htaccess 301 redirection?


RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

For more details refer http://www.seobook.com/archives/001714.shtml

0 comments: