glandvador
Technical User
In the first time, I want to redirect an application listening only on the local interface of my main web server (Apache 1.3) through a virtual folder.
So:
browser -> ->
I try to use the rewrite and proxy module, but I still have some issues.
I put in my httpd.conf file:
RewriteEngine on
RewriteRule ^/test/(.*) [P,L]
This load the main html page (a frame layout) but inside each frame I get a 404 error because the server doesn't found the pages. The browser search for "/page1.html" URLs.
For a quick and dirt hack, I match the most important pages like:
RewriteRule /page.html [P,L]
but this isn't my final goal.
In the second time I want to have an encrypted communication between the browser and my web server and a clear communication inside the local computer.
Any ideas on how implement this ??
So:
browser -> ->
I try to use the rewrite and proxy module, but I still have some issues.
I put in my httpd.conf file:
RewriteEngine on
RewriteRule ^/test/(.*) [P,L]
This load the main html page (a frame layout) but inside each frame I get a 404 error because the server doesn't found the pages. The browser search for "/page1.html" URLs.
For a quick and dirt hack, I match the most important pages like:
RewriteRule /page.html [P,L]
but this isn't my final goal.
In the second time I want to have an encrypted communication between the browser and my web server and a clear communication inside the local computer.
Any ideas on how implement this ??