I am using Apache 2.2.15 on CentOS to provide SSL for a TomCat application.
ProxyPass / http://127.0.0.1:8090/ connectiontimeout=300 timeout=300
ProxyPassReverse / http://127.0.0.1:8090
This works fine and everything is great; however, I want to add the following line:
Redirect permanent /broken/page.html https://www.servername.com/correct/page.html
before the above to handle an error in the TomCat application itself. However, it does not appear to work the way I expect (i.e, it appears to do nothing and change nothing). Is it possible to use Redirect this way? I don't have the ability to edit the application, unfortunately.