Aparajita,
Apache is forwarding on :80.  AS far as the header is concerned, I've noted 2 
things.  When I traced On Web Connection, there is no sign of a host name, 
(v11.willsub.com) , only the IP of Apache, which is 10.0.0.25, and other header 
info.  Also, when I put dump request info on the displayed page, there is 
nothing dumped.  For what it's worth, here's the Apache rewrite code, pretty 
much the same as your old Webstar code.  This is the same code that works on 
2003, but different IP addresses.

# Rewrite for Active4D GET requests
RewriteCond %{REQUEST_METHOD} GET [NC]
RewriteCond %{REMOTE_ADDR} (.*)
RewriteCond %{HTTP_HOST} v11.willsub.com [NC]
RewriteRule ^(/4[dD][cC][gG][iI])?(.+)(\.a4d|\.a4p|\.asp)(\?.*)?$ 
http://10.0.0.27:80$2$3$4?client_ip=%{REMOTE_ADDR} [QSA,P,L]

# Rewrite for Active4D POST requests
RewriteCond %{REQUEST_METHOD} POST [NC]
RewriteCond %{REMOTE_ADDR}  (.*)
RewriteRule ^(/4[dD][cC][gG][iI])?(.+)(\.a4d|\.a4p|\.asp)(\?.*)?$ 
http://10.0.0.27:80/4dcgi$2$3$4?client_ip=%{REMOTE_ADDR} [QSA,P,L]


Mike

---------------------------------------------------------------------------------------
Have you verified that apache is in fact sending v11.willsub.com as the Host 
header? Is it forwarding on port 80 or on another port? If it is forwarding on 
another port, you should include that in VirtualHosts.ini.

Kind regards,

   Aparajita

_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/

Reply via email to