Forum Moderators: phranque
I tried various stunts and to no avail. Some things (among others) I tried:
RewriteRule ^(/abc/xyz)\?(.*)%2e(.*)$ ^$1\?$2\.$3$
No good - mod_rewrite sees just the URI portion (i.e /foo/bar) and pretends the query string simply doesn't exist.
In a nutshell I can see no way to rewrite a query string using mod_rewrite.
Any suggestion ?
Thanks in advance
Deepak
It looks to me as if your regex needs refining and your destination needs to be a destination, not a regex. You may find this [brainstorm.co.uk] helpful.
RewriteRule ^(.*)\?(.*)$ $1?{unescape:$2}
(hoping that %2e would get converted to the '.' character)
Any suggestions ?
Deepak