I have two servers, one of which is solely running Atlassian Confluence (no apache installed), the other is a DMZ server which is used as a reverse proxy server (mod_proxy), pointing the address http://confluence.office.company.com to http://confluence.
I also want Apache on the reverse proxy server to redirect the page /browsepeople.action to the index page ("/").
The following did not work, and appears to do nothing in terms of redirect (the page still loads).
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName confluence.office.company.com
ProxyRequests off
ProxyPass / http://confluence/
ProxyPassReverse / http://confluence/
Redirect 301 /browsepeople.action http://confluence.office.company.com/
</VirtualHost>
What is needed to re-direct requests from this page to stop it being displayed? It doesn't even have to be a re-direct, I just want people to not be able to visit the /browsepeople.action page.