What is the equivalent of these rewrite rules:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ /index.php [NC,L]
In IIS7?
These are rewrite rules for Zend Framework and they work under Apache. I tried importing them into IIS7 with the URL rewrite module but the import fails (there are two errors).
Could anybody help me out with this?