I want to permanently redirect an html page to a dynamic url residing on another server. Problem is that it changed the "?" in the url to %3f
here was my code in htaccess...
RedirectMatch permanent ^/Medishare.html$
http://www.mydomain.com/landing/?ref=eld0007-em0001
when redirected it goes to this url...
http://www.mydomain.com/landing/%3fref=eld0007-em0001
For some reason it is changing ? to %3f. What do I do to change this to make it resolve correctly?
Thanks!