首先处理哪个文件,index.php,index.htm 还是 index.html?

首先处理哪个文件,index.php,index.htm 还是 index.html?

在 Apache 服务器中,如果域名 www.abc.com 包含 index.php、index.htm 和 index.html,当我在地址栏中输入 www.abc.com 时,会首先处理哪些文件?有没有办法更改顺序?我知道我们可以在 IIS 中做到这一点。

答案1

顺序由DirectoryIndex指示

答案2

指令中条目的顺序DirectoryIndex决定了首先查看哪个条目。

答案3

答案4

Apache 服务器首先处理index.php 然后是 index.html 最后是 index.htm。 优先顺序:

  1. 索引.php
  2. 索引.html
  3. 主页

相关内容