Well after sometime I finally figured out how to redirect https to http. Now I have a issue were when the redirect happends the url does not see all the paramters going to Tomcat webserver. This is whatI'm currently doing:
I goto url [
example.com...] then I redirect to [
example.com...] when it goes to /tomcat/reports its then sent through proxypass and I get the page just fine but Tomcat webserver gives me the following error: "Null Input Stream: null" Here are the settings that I have for httpd.conf for this example:
RewriteEngine on
RewriteLog /root/server.rewrite.txt
RewriteRule ^/reports/ [
%{SERVER_NAME}...] [R]
ProxyPass /tomcat/reports [example1.com:8080...]
If you have any ideas or helpful hints let me, I would apperciate any help that you could give....