Laravel4 framework comes with a default .htaccess rule for create pretty urls.
The rule is this.
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
Question: Which is the equivalent in IIS ??