iis7配置url rewrite时的错误

浏览:3130 发布日期:2013/05/18 分类:求助交流
我的是电脑是win7 64位系统,我的IIS是7.0在配置url rewrite的是:
<rewrite>
<rules>
<rule name="OrgPage" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^(.*)$" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" />
</rule>
</rules>
</rewrite>

但是,系统报错:

请问,这是怎么回事?
最佳答案
评论( 相关
后面还有条评论,点击查看>>