On Feb 20, 2008, at 3:45 PM, Ruslan Sivak wrote:

Krist van Besien wrote:
On Wed, Feb 20, 2008 at 6:20 PM, Ruslan Sivak <[EMAIL PROTECTED]> wrote:


So basically appache is not encoding the arguments when they're
proxied.  When it gets to index.html it just sees user=testing.

How do I make apache properly encode the arguments?


Properly encoding the arguments is not the job of apache. You need to
make sure that whatever form or page causes these requests does it
properly.

Krist



They are encoded propertly. Apache still messes them up on rewrite.. How do I get it to properly encode things?

The following is the same request. The real request gets logged later because the top one is the subrequest (Proxy).

127.0.0.1 - - [20/Feb/2008:15:41:11 -0500] "GET /index.html? user=testing test HTTP/1.1" 200 26006 127.0.0.1 - - [20/Feb/2008:15:41:11 -0500] "GET /u/testing%20test HTTP/1.1" 200 26006

This is not a properly encoded url:

 /index.html?user=testing test

that would be

/index.html?user=testing%20test
---------------------------------------------------------------------
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: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to