| Posted: 21 August 2008 at 7:47am | IP Logged
|
|
|
Here is what was captured in the rewrite.log when we debugged the other day:
71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (2) init rewrite engine with requested uri / 71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (1) Htaccess process request C:\Program Files\Helicon\ISAPI_Rewrite3\httpd.conf 71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (3) applying pattern '^/httpd(?:\.ini|\.parse\.errors).*$' to uri '/' 71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (3) applying pattern '^.*\.isrwhlp$' to uri '/' 71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (3) applying pattern '^/(.*)$' to uri '/' 71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (1) escaping http://192.168.2.184:80/ 71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (2) forcing proxy-throughput with /x.rwhlp?p=0 71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (1) go-ahead with proxy request /x.rwhlp?p=0 [OK] 71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (1) Rewrite URL to >> /x.rwhlp?p=0 71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (2) rewrite '/' -> '/x.rwhlp?p=0' 71.35.213.55 71.35.213.55 Mon, 18-Aug-2008 12:34:45 GMT [192.168.2.81/sid#371995081][rid#19628552/initial] (2) internal redirect with /x.rwhlp?p=0 [INTERNAL REDIRECT]
Also here are our rules:
# Helicon ISAPI_Rewrite configuration file # Version 3.1.0.54
RewriteEngine On RewriteCompatibility2 On RepeatLimit 32 RewriteBase # unsupported directive: [ISAPI_Rewrite]
# 3600 = 1 hour # unsupported directive: CacheClockRate 3600
RewriteLog "D:\Rewrite\rewrite.log" RewriteLogLevel 9 LogLevel debug
# Block external access to the httpd.ini and httpd.parse.errors files RewriteRule ^/httpd(?:\.ini|\.parse\.errors).*$ / [NC,F,O] # Block external access to the Helper ISAPI Extension RewriteRule ^.*\.isrwhlp$ / [NC,F,O]
RewriteRule ^/(.*)$ http\://192.168.2.184:80/$1 [NC,P]
|