Looking for equivalent of ProxyPassReverseMatch in Apache to fix missing trailing forward slash issue
- by Alex Man
I have two web servers, www.example.com and www.userdir.com. I'm trying to make www.example.com as the front end proxy server to serve requests like in the format of http://www.example.com/~username such as
http://www.example.com/~john/
so that it sends an internal request of
http://www.userdir.com/~john/
to www.userdir.com. I can achieve this…