Emlog IIS7.5伪静态

EMLOG IIS 伪静态

我也用不到,收藏一下吧,方便以后使用

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<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>
</system.webServer>
</configuration>

转载请注明出处 AE博客|墨渊 » Emlog IIS7.5伪静态

相关推荐

发表评论

路人甲

网友评论(1)

收藏了,謝謝分享!
李明 7年前 (2017-09-19) 回复