Reputation: 12044
My goal is to create a permanent redirect
http://example.com/category-/list/town/id/id2/country
to http://example.com/category/list/town/id/id2/country
(removing the last '-' char (if present) from category
regards
Upvotes: 0
Views: 44
Reputation: 785058
You can use this rule in your root .htaccess:
RedirectMatch 301 ^/(.*?)-/(.*)$ /$1/$2
Upvotes: 1