Michael Eisenstein
Michael Eisenstein

Reputation: 23

301 Htaccess Redirect Rule

Need help with an 301 htaccess redirect rule doing the following for all the files in these paths:

www.name.com/wordA/wordB/* to www.name.com/new_word/wordA/wordB/*

we are basically adding "new_word" to the new url string.

Upvotes: 2

Views: 611

Answers (1)

Greg
Greg

Reputation: 321638

Like this:

RewriteRule ^wordA/wordB/.*$ /new_word/$0 [R=301]

Upvotes: 1

Related Questions