Re: [users@httpd] Mod-Proxy and Mod-Headers

2011-09-21 Thread Suneet Shah
Hi Igor, thanks for your help. I will try this out suneet On Wed, Sep 21, 2011 at 1:20 AM, Igor Cicimov wrote: > Hi mate, > > Try something like this for the example you gave > http://host/myapp?userid=abc&role=myrole: > > RewriteEngine on > Options +FollowSymLinks

Re: [users@httpd] Mod-Proxy and Mod-Headers

2011-09-20 Thread Igor Cicimov
Hi mate, Try something like this for the example you gave http://host/myapp?userid=abc&role=myrole: RewriteEngine on Options +FollowSymLinks RewriteCond QUERY_STRING userid=(.*)&role=(.*) RewriteRule ^/myapp$ [E=var1:%1,var2:%2] RequestHeader append use

Re: [users@httpd] Mod-Proxy and Mod-Headers

2011-09-20 Thread Suneet Shah
Thanks Igor. Would you be able to point me to an example? I dont fully understand how I can configure this to take a parameter of the query string and then set a variable as a header. thanks for your help On Tue, Sep 20, 2011 at 6:29 PM, Igor Cicimov wrote: > Use mod_rewrite to set variable a

Re: [users@httpd] Mod-Proxy and Mod-Headers

2011-09-20 Thread Igor Cicimov
Use mod_rewrite to set variable and then set that var as header. On Sep 21, 2011 7:32 AM, "Suneet Shah" wrote: > Hello, > > I had a question about Mod-Proxy and Mod_headers > > 1) Is it possible to take a values that are on a query string and pass them > as headers? If so how? > For example, if I

[users@httpd] Mod-Proxy and Mod-Headers

2011-09-20 Thread Suneet Shah
Hello, I had a question about Mod-Proxy and Mod_headers 1) Is it possible to take a values that are on a query string and pass them as headers? If so how? For example, if I have: http://host/myap?userid=abc&role=myrole I would like to take the values in the query string and pass them as headers