I'm using my mac with XAMPP from apachefriends with the standard configuration.
I want to use a reverse proxy, so I edited the etc/extra/proxy-html.conf
and added the following:
ProxyRequests Off
ProxyPass /my-gateway/ http://interner.server.test/
<Location /my-gateway/>
ProxyPassReverse /
ProxyHTMLEnable On
ProxyHTMLURLMap http://interner.server.test/ /my-gateway/
ProxyHTMLURLMap / /my-gateway/
</Location>
Now when I go to localhost/my-gateway
, I get the Error 404 Object not found
.
How to find out why this is not working?