You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Joost de Heer <sa...@xs4all.nl> on 2005/08/17 10:07:22 UTC

[users@httpd] Re: Excluding a directory from mod_proxy (apache 1.3)

Matt Blasinski said:
> Hi,
>
> I'm using mod_proxy to proxy the document root to another port on the
> same machine with Apache 1.3.
>
>      ProxyPass / http://localhost:180/
>      ProxyPassReverse / http://localhost:180/
>
> This works fine and as expected, you get the page at that port/location
> rather than it attempting to access this URL through port 80.  I would
> like to exclude a subdirectory from being proxied, that is, to use /sub
> on the original host and port instead of port 180.

Use mod_rewrite for this.

I have the following running without any problems:

RewriteCond %{REQUEST_URI} !^/sub/.* [NC]
[Possibly some more rewritecond's]
RewriteRule /(.*) http://localhost:180/$1 [P,L]

Joost


---------------------------------------------------------------------
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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org