IIS7下如何去掉入口文件index.php?

浏览:7184 发布日期:2013/08/29 分类:求助交流
官网给出的是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下的怎么写呢?
最佳答案
评论( 相关
后面还有条评论,点击查看>>