tp5框架 IIS隐藏入口文件

IIS需要的配置

需要添加重写模块 URL Rewrite,安装 rewrite_2.0_rtw_x64.msi 就可以了(根据电脑配置选择64位还是32位)

tp5配置

在入口文件同级目录下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>

你可能感兴趣的:(TP5)