IIS 删除 index.php

IIS 删除 index.php

下面是我的 web.config,我的问题是当访问 www.domain.com 时它会转发到 www.domain.com/index.php有些将保留在 www.domain.com 上(没有 index.php)

我如何确保即使用户使用 index.php 访问也会重定向到 /?

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <directoryBrowse enabled="true" />
        <defaultDocument>
            <files>
                <clear />
        <add value="index.php" />
                <add value="Default.htm" />
                <add value="Default.asp" />
                <add value="index.htm" />
                <add value="Default.aspx" />
            </files>
        </defaultDocument>
        <httpErrors>
            <remove statusCode="403" subStatusCode="-1" />
            <error statusCode="403" prefixLanguageFilePath="" path="https://www.domain.com" responseMode="Redirect" />
        </httpErrors>
    </system.webServer>
</configuration>

答案1

如果您希望将索引文档重写为 URI 中路径的基础,请执行以下操作:

  1. 安装URL 重写模块 2.0对于 IIS
  2. 使用以下规则完成重写:

-

<rule name="Default document rewrite" stopProcessing="true">
  <match url="(.*)index.php" />
  <action type="Redirect" url="{R:1}" redirectType="Permanent" />
</rule> 

相关内容