You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Joshua Slive <js...@gmail.com> on 2005/03/23 15:19:10 UTC

Re: [users@httpd] mod_rewrite: appending to query string on custom HTTP header

On Wed, 23 Mar 2005 01:13:06 +0000, Terrence Brannon
<ba...@metaperl.com> wrote:
> So finally: when a request hits our apache server and the request
> includes the header x-vc-https with value "on" then how might I append
> "SECURE=1" to the query string and then redirect the entire new request to
> http://localhost:8071/$ENTIRE_NEW_REQUEST

Your question is not exactly clear, but this might get you started:

RewriteCond %{HTTP:X-VC-HTTPS} ^on$
RewriteRule (.*) http://localhost:8071/$1?SECURE=1 [QSA,R]

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org