For some reason, we recieving a bunch of inbound traffic on URLs that contain HTML entities.
E.g.
http://www.ourdomain.com/index.php?key1=value1&key2=value2
I want to create a RewriteRule to replace these HTML entities (specifically & with &), and forward people on to the corrected address.
I'm tried these:
RewriteRule & & [R=permanent]
and
RewriteRule & &
But nothing is happening.
(BTW. I know this is a horrible and dangerous way to solve someone else's problem, but I just need to get it done. temporarily)
Thanks for any help...