user2757017
user2757017

Reputation: 97

Rewrite 3 dashes to only one dash in url

I've got some urls looks like

forum/131-Call-Of-Duty-Black-Ops-2---Problemy-techniczne/107002-Call-of-duty-black-ops-2-brak-dziwieku.html

As you can see, there are "---" in the url. How can I rewrite them to only one "-", so the url will look like this:

forum/131-Call-Of-Duty-Black-Ops-2-Problemy-techniczne/107002-Call-of-duty-black-ops-2-brak-dziwieku.html

Upvotes: 1

Views: 130

Answers (1)

anubhava
anubhava

Reputation: 785266

You can use this rule:

RewriteRule ^(.*?)---(.*)$ /$1-$2 [L,R]

Upvotes: 1

Related Questions