2009/7/22 Brian Kim <09su.research@xxxxxxxxx>:
> It means users must not need to set up the proxy configurationIMHO yes. To get such a transparent proxy working with mod_proxy
>
> In that sense, I thought a reverse proxy seems to be the transparent proxy.
>
> Is it right?
you'll need to work-around with mod_rewrite since mod_proxy does not
provide a directive like "take the host header and proxy to that
server" (yet) as Nick mentioned.
RewriteEngine on
# using the_request and NE to be safe from unescape/escape
modifications (=unparsed_uri)
RewriteCond %{THE_REQUEST} ^[A-Z]{3,5}\ (/[^?\ ]*)
RewriteRule ^/ http://%{HTTP_HOST}%1 [NE,P]
Bob
---------------------------------------------------------------------
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@xxxxxxxxxxxxxxxx
" from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx
For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx