码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp5 在IIS8.5下隐藏index.php

时间:2018-03-03 16:53:30      阅读:840      评论:0      收藏:0      [点我收藏+]

标签:exp   dir   page   ping   文件   AC   1.0   direct   ebs   

一、添加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

标签:exp   dir   page   ping   文件   AC   1.0   direct   ebs   

原文地址:https://www.cnblogs.com/zhaoxlchn/p/8496683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!