- 主页
- 经验教程
- Emlog IIS7.5伪静态
Emlog IIS7.5伪静态
日期:2017-9-17 墨渊 经验教程 浏览:1046次 评论:1条 本文已被百度收录!
EMLOG IIS 伪静态
我也用不到,收藏一下吧,方便以后使用
代码语言:javascript复制<?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>