Link to home
Start Free TrialLog in
Avatar of Shawn
ShawnFlag for Canada

asked on

isapi rewrite 3 not working

I have just moverd to isapi rewrite 3 on a new laptop with IIS7, windows 7 64bit (previously windosws xp pwith IIS6) and ca'n't seem to get it working. I have one simple rewrite in my test.

 here is my entire httpd.conf file using to test

RewriteEngine On
RewriteCompatibility2 On
RepeatLimit 200
RewriteBase
LogLevel debug
RewriteLogLevel 9

RewriteRule ^company /index.cfm?action=home.company [NC,L]

in the log file I am getting
127.0.0.1 127.0.0.1  Thu, 23-Sep-2010  17:11:52 GMT [127.0.0.1/sid#1][rid#18893128/initial] (1) Htaccess process request C:\Program Files\Helicon\ISAPI_Rewrite3\httpd.conf
127.0.0.1 127.0.0.1  Thu, 23-Sep-2010  17:11:52 GMT [127.0.0.1/sid#1][rid#18893128/initial] (3) applying pattern '^company' to uri '/ARAXI_DEV_new_site/wwwroot/company'



it doesn't look like any rewriting is getting done. what am I missing?

Avatar of Brad Howe
Brad Howe
Flag of Canada image

Hi,
Add your default rewritebase
RewriteEngine On
RewriteCompatibility2 On
RepeatLimit 200
RewriteBase /
LogLevel debug
RewriteLogLevel 9

RewriteRule ^company /index.cfm?action=home.company [NC,L]  
You rule works fine.. I test it and got a 404 as expected but it works nevertheless.
::1 ::1 Thu, 23-Sep-2010 20:46:43 GMT [localhost/sid#1][rid#19782248/initial] (2) init rewrite engine with requested uri /company
::1 ::1 Thu, 23-Sep-2010 20:46:43 GMT [localhost/sid#1][rid#19782248/initial] (1) Htaccess process request C:\Program Files\Helicon\ISAPI_Rewrite3\httpd.conf
::1 ::1 Thu, 23-Sep-2010 20:46:43 GMT [localhost/sid#1][rid#19782248/initial] (3) applying pattern '^company' to uri 'company'
::1 ::1 Thu, 23-Sep-2010 20:46:43 GMT [localhost/sid#1][rid#19782248/initial] (1) Rewrite URL to >> /index.cfm?action=home.company
::1 ::1 Thu, 23-Sep-2010 20:46:43 GMT [localhost/sid#1][rid#19782248/initial] (2) rewrite 'company' -> '/index.cfm?action=home.company'
::1 ::1 Thu, 23-Sep-2010 20:46:43 GMT [localhost/sid#1][rid#19782248/initial] (2) internal redirect with /index.cfm?action=home.company [INTERNAL REDIRECT]
Give it a go, Hades666
ASKER CERTIFIED SOLUTION
Avatar of Brad Howe
Brad Howe
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Shawn

ASKER

mine shows
 applying pattern '^company' to uri '/ARAXI_DEV_new_site/wwwroot/company'

yours shows
applying pattern '^company' to uri 'company'

i don't know enough about isapi but isn't this a little different?
Avatar of Shawn

ASKER

ok I just tried this and it worked
http://127.0.0.1:8002/company
so added this and presto
RewriteBase /ARAXI_DEV_new_site/wwwroot/

thanks for pushing me in the right direction