Forum Topic: Redirect After Folder Name Change
Hi,
I need to set a permanent 301 redirect on a site where just the folder name has changed so for example:
http://example.com/article/some-article
wants to redirect to
http://example.com/articles/some-article
The only difference in the folder name is it is now article(s).
There are no changes to the article names inside this folder.
I am really not sure what code to use to do this any help would be appreciated.
2 Replies to “Redirect After Folder Name Change”
I think I might have sussed it, I have used:
RedirectMatch 301 /article/(.*) /articles/$1
Yes that looks like the way to do it! :)