I have a VirtualHost entry like below, which routes all requests for
http://foo.bar.com URLs to a remote server http://fooremote.bar.com .
<VirtualHost *>
ServerName foo.bar.com
ProxyRequests Off
ProxyPreserveHost Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://fooremote.bar.com/
ProxyPassReverse / http:// fooremote.bar.com/
.
.
.
Now I want that a subfolder in this domain should be served from local.
For e.g. http://foo.bar.com/images should serve files from the local server,
while rest of the requests to any hyperlink on foo.bar.com should be passed to
the remote server.
Is there any way to achieve it within the VirtualHost section?
This e-mail (and any attachments), is confidential and may be privileged. It
may be read, copied and used only
by intended recipients. Unauthorized access to this e-mail (or attachments) and
disclosure or copying of its
contents or any action taken in reliance on it is unlawful. Unintended
recipients must notify the sender immediately
by e-mail/phone & delete it from their system without making any copies or
disclosing it to a third person.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]