Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

reverse proxy not working with Netscape 6.23

Status
Not open for further replies.

mklai

Programmer
Aug 26, 2002
1
HK
I have an application in which an apache server acting as a reverse proxy is placed in front of the application server. In IE and Communicator (4.79) it is working fine but when I use Netscape 6.23, the browser cannot load the page. To make matters worse, it also shows the internal ip of the application server in the browser task bar!! Here is a portion of my apache configuration:

<VirtualHost *:443>

RewriteEngine on
RewriteLogLevel 9
RewriteLog logs/rewrite_log
SSLProxyEngine on
ProxyRequests on

ErrorLog logs/ssl_error_log
TransferLog logs/ssl_access_log

SSLEngine on

ProxyPass / ProxyPassReverse /
RewriteRule ^/(.*)$ [P]


What I have noticed is that the rewrite rule is ineffective because IE works regardless of whether the rule exists or not and the rewrite log doesn't contain any logs. Much appreciated if someone can tell me what I am doing wrong. Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top