I am wondering if htaccess can help me with this
Facebook is encoding the slashes and question marks after the query string of any link I add to it. So that
example.com?who/what?when
becomes
example.com?who%2Fwhat%3Fwhen
which returns a not found or error message when clicked in the browser
Is there a way htaccess could be used to convert any "%2F" in a url back to a slash "/"
and any "%3F" in a url back to a question mark "?"
I've only used htaccess for redirects, so... be kind.
Thanks you!