[users@httpd] RE: Version Number on a Mac?

2014-08-17 Thread Bob Cole
Try this in the Terminal window: $ httpd -v Server version: Apache/2.2.26 (Unix) Server built: Dec 10 2013 22:09:38 Bob

Re: [users@httpd] URL is decoded when it should be forwarded as is

2014-08-17 Thread Eric Covener
* You would need to capture more carefully in the condition (because it is the full request line w/ e.g. GET / HTTP/1.1) * You need to use %1 in the substitution On Sun, Aug 17, 2014 at 9:44 AM, Vadim Blumkin wrote: > Thanks, Eric > > Do you mean something like this ? > > RewriteCond %{THE_R

Re: [users@httpd] URL is decoded when it should be forwarded as is

2014-08-17 Thread Vadim Blumkin
Thanks, Eric Do you mean something like this ? RewriteCond %{THE_REQUEST} ^/filter/(.*) RewriteRule ^/filter/(.*)$ http://127.0.0.1:7001/$1 [R] Thanks, Vadim On Sun, Aug 17, 2014 at 3:19 PM, Eric Covener wrote: > On Sun, Aug 17, 2014 at 7:59 AM, Vadim Blumkin > wrote: > > But instead of s

Re: [users@httpd] URL is decoded when it should be forwarded as is

2014-08-17 Thread Eric Covener
On Sun, Aug 17, 2014 at 7:59 AM, Vadim Blumkin wrote: > But instead of sending it as is , apache is doing decoding and sending it > like this: there are two places it can happen, mod_rewrite and mod_proxy. In mod_rewrite, the thing you're comparing against has been decoded. If you want it in the

[users@httpd] URL is decoded when it should be forwarded as is

2014-08-17 Thread Vadim Blumkin
Hi, I encountered with some problem when HTTP delete URL contains special characters like , ‘?/.’ Apache receives following URL: DELETE /filter/delete/test%3Fname HTTP/1.1 But instead of sending it as is , apache is doing decoding and sending it like this: DELETE /filter/delete/test?na