Two methods for 301 redirect with htaccess
Oct 14
development, linux No Comments
Create a file called .htaccess and place in your root web folder with one of the follow declarations.
Copy and past the code between the line
Redirect a single page
————————————————————————
redirect 301 /old_page.htm http://www.you.com/new.htm
————————————————————————
Redirect all pages to a new extension (like asp to php)
————————————————————————
RewriteEngine on
RewriteBase /
RewriteRule (.*).asp$ /$1.php [L, R=301]
————————————————————————
Check out these posts too:
Facebook
RSS
Twitter
Recent Comments