I have semicolon as query string separator in my urls instead of and (&).
My problem is that when I try to do a meta refresh to a url with semicolon in query string it will translate it to %253b instead. So when forwarded, I can't read the query string parameters as the separator is not there anymore. example:
http://domain.com/?foo=1;bar=2
becomes:
http://domain.com?foo=1%253bbar=2
How can I solve this, so it doesn't translate the semicolon when doing a meta refresh?
Grateful for any help!