On Wed, 23 Mar 2005 01:13:06 +0000, Terrence Brannon <bauhaus@xxxxxxxxxxxx> 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@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx