IIS7和IIS8环境下 ThinkPHP专用URL Rewrite伪静态规则

Posted chbyl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IIS7和IIS8环境下 ThinkPHP专用URL Rewrite伪静态规则相关的知识,希望对你有一定的参考价值。

 
这是适用于IIS7,IIS7.5,IIS8.0及以上的Thinkphp的伪静态规则,把以下代码保存成web.config文件,放到FTP的web目录内即可。

<?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伪静态规则的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp在IIS7.5+环境下部署出现的URL重写问题解决方法

IIS7 IIS8 中多个版本php共存的方法

thinkphp5 在IIS8.5下隐藏index.php

thinkphp在iis下如何写规则url重写

IIS7.5,IIS8.0批量添加主机头

IIS+PHP上传文件大小限制和上传时间限制,iis7和iis8上传文件大小限制和上传时间限制