Forum Moderators: phranque
I tried the following but did not worked.
RedirectMatch 301 /page(\d{2}).htm http://example.com/page0$1.htm
Any suggestions?
[edited by: jdMorgan at 3:19 am (utc) on April 1, 2006]
[edit reason] Example.com [/edit]
Try this:
RedirectMatch 301 ^/page([0-9]{2})\.htm$ http://example.com/page0$1.htm
Also be aware that you should flush your browser cache before testing any change to your URL system.
Jim