Remove %20 from url with a rewrite rule – Apache
I have some urls with %20 (encoded space) inside. I have to remove %20. So, for example https://www.example.com/aaaa%20bbbb/page.html must become https://www.example.com/aaaabbbb/page.html I tried with this Apache rewrite rule: RewriteRule ^/([^%20]*)(?:%20)+(.*)$ /$1$2 [R=301] The problem is that first group stop on…