I'm trying to get an iis7 url rewrite to work on a query in the home directory. The end goal is to get it to append index.php to the beginning of the query string. Everything I try ends in a 500 error. What am I doing wrong?
<rule name="post preview fix" patternSyntax="ECMAScript">
<match url="^\?p=([0-9]+)&preview=true" />
<action type="Rewrite" url="index.php?p={R:1}&preview=true" />
</rule>