IIS7下配置web.config隐藏index.php

Posted lina520

tags:

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

<?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>
        <directoryBrowse enabled="false" />
                <security>
          <requestFiltering allowDoubleEscaping="True" />
        </security>
        <defaultDocument>
            <files>
                <clear />
                <add value="index.php" />
                <add value="Default.htm" />
                <add value="Default.asp" />
                <add value="index.htm" />
                <add value="index.html" />
                <add value="iisstart.htm" />
            </files>
        </defaultDocument>
    </system.webServer>
     
</configuration>

记录一下,方便自己以后使用

以上是关于IIS7下配置web.config隐藏index.php的主要内容,如果未能解决你的问题,请参考以下文章

C# IIS7.0+ Web.Config 配置Session过期时间

IIS7 伪静态 web.config 配置方法

在 IIS7 上使用 web.config 删除 .php 扩展名

thinkphp怎么隐藏index.php

IIS7下,显示PHP错误(不显示500错误,而显示详细错误)

Web.config设置system.webServer