Htaccess code to 301 redirect a folder change
-
Hi,
I need some help to redirect all my site as there was a folder change.
eg, the old structure was www.mysite.com/stuff-1/bags.html and I need it to go to the same structure without the "-1" eg: /stuff/bags.html
The "bags.html" will be lots of different products, so this would be a wildcard?What would the htaccess code need to be?
Thanks
-
Try the following in your .htaccess:
RedirectMatch 301 ^/stuff-1/(.*)$ http://www.mysite.com/stuff/$1
-
Thanks Matt,
Worked perfectly.Cheers,
Paul -
Hi Matt,
Maybe you can help me with this one too, as it may be similar??I have a series of folders that are in the structure:
c/123456/bags.html (the "123456" can be any series of 6 digit numbers), and the "bags.html" can be any product
I need that to be 301 redirected to:
/default/bags/bags.htmlThanks,
Paul