.htaccess Rewrite% 2f
1 answer
You need to first use the AllowEncodedSlashes
directive inside the server config and set it to:
AllowEncodedSlashes NoDecode
Then, inside your root .htaccess, you can use this rule:
RewriteEngine On
RewriteRule ^(reviews/area/Santa-Barbara)\%2f$ /$1 [R=301,NC,L]
+2
source to share