ISAPI_Rewrite: Zend PHP Framework project setup
- by Yaw Reuben
How do I go about getting the isapi_rewrite working on IIS 6.0?
My shared hosting account supports ISAPI_Rewrite - I've run the provided tests to confirm.
I'm only able to access the index page of my Zend PHP project, but get the 404 error for other actions in my index controller class definition.
I've basically placed the code:
[ISAPI_Rewrite]
RepeatLimit 20
RewriteRule (?!\.(js|ico|gif|jpg|png|css|swf))$ index.php
in an httpd.ini access file in my wwwroot directory. Is there anything I'm missing?