Forum Moderators: phranque

Message Too Old, No Replies

Help Redirecting Several Folders/Files to one URL Only

not a new website, but a url in the same website

         

dbar

5:54 pm on Jun 17, 2005 (gmt 0)

10+ Year Member



I have some folders & files similar to these:

/widgets/
/widgets/red/
/widgets/red/big.html
/widgets/blue/small.html

I want to redirect all folders and files under /widgets/ to one url.

The following does not work:

RedirectMatch permanent ^/widgets/$ http://www.example.com/new/widgets.html

Any ideas? Thanks.

Span

10:30 pm on Jun 17, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



The dollar sign is an end-anchor in regular expressions. So your redirect does work but only requests that match /widgets/ are redirected. Take the dollar sign away and it will do what you want:

RedirectMatch permanent ^/widgets/ http://www.example.com/new/widgets.html

dbar

11:12 pm on Jun 17, 2005 (gmt 0)

10+ Year Member



yep that did it. Thanks!