Rewrite Tips - 301 Moved Permanently Redirect for Apache Web Server
2. How to Use 301 Redirect Old Page to New Page for Apache Web Server
Here is an example of redirecting an old-page.php
to a new-page.php...
RewriteRule /old-page.php
http://www.example.com/new-page.php [I,O,RP,L]
Just drop the above code in your local httpd.ini file (ctrl +
click to grab the above code).
|