i want to redirect:
http://www.example.com/example-folder/%E2%80%8Bvirginia.html
into:
http://www.example.com/example-folder/virginia.html
thus only removing this part: %E2%80%8B from the first url
by the way, if the first link is pasted in firefox, the characters doesnt change. but on chrome the characters i want to remove becomes a square character.
thanks in advance!
----------------
on another forum or help site this was suggested but doesnt work:
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/example-folder/[^/]+virginia\.html/? [NC]
RewriteRule .* example-folder/virginia.html [R=301,L]
TIA!