官网给出的是apache下的方法,例如去掉下面url中的index.php
http://192.168.1.98/index.php/Contents/Pay/index
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
请问IIS7下的怎么写呢?