> -----Ursprüngliche Nachricht-----
> Von: Jess Holle [mailto:[EMAIL PROTECTED] 
> Gesendet: Donnerstag, 17. April 2008 12:36
> An: dev@httpd.apache.org
> Betreff: Re: 2.2.9 (Was: Re: [PROPOSAL] Time Based Releases)
> 
> Plüm wrote:
> > IMHO we already forward them escaped. The problem is that things get
> > unescaped first and for reserved characters like ';' this process
> > cannot be reverted. So if the original URL contained an escaped ';'
> > the forwarded one will contain a literal ';'.
> > With mod_proxy or better ProxyPass you already can get around this
> > by specifying the nocanon option which causes the the original
> > URL to be forwarded (much like JkOptions +ForwardURICompatUnparsed).
> >   
> That makes sense -- as we're only having issues with ";" to 
> the best of 
> my knowledge.
> 
> That said, we need to use the rewrite stuff shown in the bug (unless 
> there's another way we're missing) to forward just the appropriate 
> requests to Tomcat.  Is there a way we're missing (that would 
> ideally be 
> clearly documented...) to avoid running into issues with ";" 
> when using 
> mod_proxy and mod_rewrite as we are?  If not, then one is 
> really needed 
> for ";".

Have your tried something like

ProxyPassMatch (^/somewhere/.*jsp$) http://backend$1 nocanon

?

Regards

Rüdiger

Reply via email to