PDA

View Full Version : How to setup a 301 redirect


SharkSpace_Amanda
12-30-2006, 08:42 AM
If you want to redirect only a page to a page on a different domain use the following:

redirect 301 /oldpage.htm http://www.yourdomain.com/newpage.htm


If you want to redirect your entire site use:

redirect 301 / http://www.yournewdomain.com/


If you want to redirect all traffic from yourdomain.com to www. yourdomain.com use the following:


Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yourdomain.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]




Add the code in your .htaccess file.