I'm trying to move a zend application from Apache2 to IIS6, so I decided to install ISAPI Rewrite 3 as recommended here, so I copied the hole app folder to c:\inetpub\wwwroot\ and made the IIS Default Web Site to point to the folder /public.
Now, my .htaccess in /public is the following, as suggested here.
RewriteRule (?!\.(js|ico|gif|jpg|png|css|swf))$ index.php
But nothing happens, I can reach the homepage OK, and static files too, but no rewriting is done to my URLs, so none of my controllers would work.. Any idea? Thanks!