ISAPI_Rewrite: Zend PHP Framework project setup
Posted
by Yaw Reuben
on Stack Overflow
See other posts from Stack Overflow
or by Yaw Reuben
Published on 2010-06-01T17:18:26Z
Indexed on
2010/06/01
17:23 UTC
Read the original article
Hit count: 284
php
|zend-framework
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?
© Stack Overflow or respective owner