IIS7和IIS8环境下 ThinkPHP专用URL Rewrite伪静态规则
Posted chbyl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IIS7和IIS8环境下 ThinkPHP专用URL Rewrite伪静态规则相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="ThinkPHP_NiPaiYi" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
|
以上是关于IIS7和IIS8环境下 ThinkPHP专用URL Rewrite伪静态规则的主要内容,如果未能解决你的问题,请参考以下文章