Hi,

I have a Server (server1) with the next directories:

   - /var/www/html/dir1
   - /var/www/html/dir2
   - /var/www/html/dir3
   - /var/www/html/dir4

And I want redirect an external URL across a Proxy (proxy1) to 'dir1'

I tried this meaning in the "httpd.conf" at proxy1:

<VirtualHost *>
  ServerName external_url
  ProxyPass /  http://server1/
  ProxyPassReverse /  http://server1/
  ProxyRequests Off
  ProxyPreserveHost On
    <Location /dir2>
      order deny,allow
      deny from all
    </Location>
    <Location /dir3>
      order deny,allow
      deny from all
    </Location>
    <Location /dir4>
      order deny,allow
      deny from all
    </Location>
    <Location /dir1>
      order deny,allow
      allow from all
    </Location>
</VirtualHost>

It works, but I would like some brief and efficient meaning . Thanks

Reply via email to