What would this rewrite rule from .htaccess translate to IIS7 web.config?
RewriteRule .* index.php/$0 [PT,L]
What would this rewrite rule from .htaccess translate to IIS7 web.config?
RewriteRule .* index.php/$0 [PT,L]
Can't test it right now but hopefully
<rewrite>
<rules>
<rule name="some unnamed rule" stopProcessing="true">
<match url="^.*$" />
<action type="Rewrite" url="index.php/{R:0}" />
</rule>
</rules>
</rewrite>
isn't too wrong...