I just added the mod_proxy.so module to my httpd.conf and set up my configuration as follows:
<IfModule mod_proxy.c>
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
</IfModule>
ProxyPass /route http://192.168.1.1
ProxyPassReverse /route http://192.168.1.1
Whenever I try to access route (
http://localhost/route) it gives me a 403 Forbidden error. I can't seem to see why it is doing this, I've tried many different approaches and changes (adding ":80/" to the end of the URL's, etc) and nothing seems to work. Any advice?