Matt
Matt

Reputation: 383

Replacing a URL Directory Name Using htaccess?

My current website is:

example.com/Hand_Soap/

There are also many pages like:

example.com/Hand_Soap/Blue

example.com/Hand_Soap/Green

etc

How do I make a 301 redirect to:

example.com/Hand_Wash/

example.com/Hand_Wash/Blue

example.com/Hand_Wash/Green

etc

I have looked at several posts on this site, but none seem to work for me.

Cheers!

Upvotes: 0

Views: 177

Answers (2)

Matt
Matt

Reputation: 383

In the end I used the WP direction plugin. Works well!

Upvotes: 1

eagle12
eagle12

Reputation: 1668

Something like this should work

   redirect 301 /Hand_Soap/ http://example.com/Hand_Wash/
   redirect 301 /Hand_Soap/Blue http://example.com/Hand_Wash/Blue
   redirect 301 /Hand_Soap/Green http://example.com/Hand_Wash/Green

Upvotes: 0

Related Questions