Redirect from one web page to another web page
by Nirmala[ Edit ] 2009-10-22 18:41:28
Htaccess Redirection:
If you want to redirect from one page to another page permanently just use the below code.
RedirectMatch permanent ^/old-filename$ http://www.domainname.com/new-filename
If you want to redirect from one page to another page temporarily just use the below code.
RedirectMatch temp ^/old-filename$ http://www.domainname.com/new-filename