thinkphp5 在IIS8.5下隐藏index.php

Posted zhaoxlchn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5 在IIS8.5下隐藏index.php相关的知识,希望对你有一定的参考价值。

一、添加URL重写模块

二、在index.php同级目录添加文件web.config

<?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>

 

以上是关于thinkphp5 在IIS8.5下隐藏index.php的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp5.1隐藏index.php入口文件

thinkphp5 Apache / IIs环境下 URL重写

[转]ThinkPHP5 隐藏index.php问题

记thinkphp5在Nginx环境下多入口 隐藏入口文件后缀

thinkphp5.0如何隐藏index.php入口文件

thinkphp5 IIS7.5 隐藏index.php的方法