We're trying to clean up some 404's on our site and some website is linking to /page.html%C2%A0. I'm trying to match the url with mod rewrite and redirect it to /page.html
RewriteRule ^page.html%C2%A0 /page.html [R=301,L]
This doesn't seem to match the url, I've also tried escaping the percent signs to \%, but that doesn't match either.
Anyone know how to get it working?