Good day,

How can I (if it is possible at all) specify that all requests to:

/SomeUrl
/SomeUrl/
/SomeUrl/index.html

go to one location and all other requests like

/SomeUrl/somePage.html

go to the other location? I have started editing httpd.conf like this:

<VirtualHost *:8080>
<Location /SomeUrl>
ProxyPass  http://www.google.com
</Location>
<Location /SomeUrl/>
ProxyPass  http://www.google.com
</Location>
<Location /SomeUrl/index.html>
ProxyPass  http://www.google.com
</Location>
# for other requests...?
</VirtualHost>

Do I have to use rewrite rules?

Thank you in advance,
Milan



      

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

Reply via email to