how do I redirect a category or page /my-page/ to a new page /my-new-page/ using htaccess?
A:
Add this above the existing rules (but after RewriteEngine On):
RewriteRule ^/?my\-page /my-new-page [R=301,L]
Dan Grossman
2010-10-21 09:00:10
hi - this doesnt seem to work?
InnateDev
2010-10-21 09:05:39
This was tested and does work on both Apache 1.x and 2.x servers.
Dan Grossman
2010-10-21 23:18:03
A:
This works: Redirect 301 /my-page/ http://mydomain.com/my-new-page/
InnateDev
2010-10-21 09:24:50