gpt4 book ai didi

php - 条件目录索引

转载 作者:搜寻专家 更新时间:2023-10-31 21:16:25 25 4
gpt4 key购买 nike

我在同一个目录下安装了两个 CMS。其中一个 CMS 允许将 index.php 文件重命名为 index2.php,而另一个则不允许。理想情况下,我想在 .htaccess 文件中设置条件规则:

  • 使用 index.php 作为默认目录索引
  • 如果出现 404 错误,则将 DirectoryIndex 设置为 index2.php

有谁知道这是否/如何可能?

最佳答案

(404 = 未找到文件),所以您实际上是在寻找一种允许遍历可能的索引文件列表的方法)
将以下行添加到您的 .htaccess 文件中:

DirectoryIndex index.php index2.php

index.php 存在时,它被使用。否则,使用 index2.php
index.phpindex2.php存在时,使用index.php,因为它先出现。

另请参阅:Apache Docs > DirectoryIndex directive .

关于php - 条件目录索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7697379/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com