Forum Moderators: phranque
I have tried to create both redirectmatch and rewrite rules to forward this request to my index page, to no avail. I looked up the URL Encoding equivilant and it represents a double quote ("). I have tried the following rules, none of which had any effect:
RedirectMatch 302 %22 /index.html
RedirectMatch 302 \%22 /index.html
RewriteRule \%22$ /index.html [R=302,L]
RewriteCond %{REQUEST_URI} ^\%22$
RewriteRule (.*) /index.html [R=302,L]
RewriteCond %{REQUEST_URI} ^%22$
RewriteRule (.*) /index.html [R=302,L]
RewriteCond %{REQUEST_URI} ^"$
RewriteRule (.*) /index.html [R=302,L]
Can anybody suggest a solution until I am able to track the website down and get them to fix the bad link?
Thanks, Wiz