On Thu, Jan 1, 2009 at 7:47 AM, André Warnier <[email protected]> wrote:
> RewriteCond %{REQUEST_URI} !/servlet\.[^\.]+$
> RewriteRule ^/xyz/(.*)$ /$1 [PT]
> <LocationMatch "/servlet\.[^.]+$">
>  ProxyPass ajp://localhost:8009
> </LocationMatch>

>File "/srv/www/star1/docs/xyz/" not found.

Are there any other rewrites that actually apply to the servlet and
don't use PT?  A matching RewriteRule w/o PT will prevent parts of
mod_proxy from running (where it tags a request as being for the
proxy, to be handled later)

My usual suggestion/simplification is to use rewrite with the P flag
whenever rewrite and proxy are required for the same context root.  I
believe in 2.0.x it was less predictable because the Proxy could
actually run first and prevent rewrite from happening at all.

If you're handy with a debugger, "proxy_trans" is the name of the
function that can be "covered up".

-- 
Eric Covener
[email protected]

---------------------------------------------------------------------
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