>- Revert jk/apache to use uri, remove the encode call ( again, j-t and
>j-t-c - one more week to do that, after that we'll be j-t-c 
>only ). Henri
>- could you do this and the next one ?

I'll reintroduce the JkOptions which will help us play with
different encoding :

ForwardStandardURI :

will send just std uri 

s->req_uri = r->uri


ForwardEscapedURI :

will send escaped 

s->req_uri = ap_escape_uri(r->uri))


ForwardUnparsedURI :

will send escaped

        s->req_uri      = r->unparsed_uri;
        if (s->req_uri != NULL) {
            char *query_str = strchr(s->req_uri, '?');
            if (query_str != NULL) {
                *query_str = 0;
            }

We could later drop support for some options
and make by default ForwardEscapedURI ....
   

Reply via email to