I've tried so many ways to do this for days now and STILL somehow gotten nowhere. Making me crazy. Seems like it ought to be relatively easy....
I need to rewrite traffic from an old app to a new one, but the format of the values passed is different.
This:
http://oldapp.com/download.aspx?filename=FILE-01.pdf
has to rewrite to this:
https://NEWapp.com/this/that/FILE-01.pdf
So I have to pull the value out of the QUERY_STRING, which in this example is FILE-01.pdf
, and incorporate it into the new URL. There is always only one name/value pair in QUERY_STRING and it is always "download.aspx?filename=".
Seems really straightforward, right? But I keep missing it. I have tried many, many variations of this:
RewriteEngine On
RewriteCond %{QUERY_STRING} filename=([\S\s]+)
RewriteRule ^(.*)$ https://NEWapp.com/this/that/$1 [R,L]
I'm working with IBM HTTP Server v8.0, which is basically Apache 2.2.
SOLUTION:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^filename=([^&]+)
RewriteRule ^(.*)$ https://NEWapp.com/this/that/%1? [R,L]
Try:
When you access a capture group from a
RewriteCond
you need to use the backreference operator%
rather than the$
prefix which would be used for capture groups in aRewriteRule