2

301 redirect this:

example.com/AnythingHere/-/AnythingHere.html

to:

example.com/AnythingHere/AnythingHere.html

Note: AnythingHere means any digit/alphabet/dash/underline.

tried this but not work:

RewriteRule (.*)/(.*)-(.*)\.html$  (.*)/-/(.*)-(.*)\.html$

1 Answers1

0

You can use RedirectMatch :

RedirectMatch 302 ^/(.+)/-/(.+)\.html$ http://example.com/$1/$2.html
Amit Verma
  • 40,709
  • 21
  • 93
  • 115
  • Thanks for your answer. It redirects but not to **example.com/AnythingHere/AnythingHere.html** It has weird redirect to something like: **example.com/AnythingHere.html?Location=-&countrySelect=search.php&Select=Account&submit=1** – Jim Jackson Mar 14 '16 at 09:38