我想设置多个索引文件,但不强制。让我更好地解释一下,如果用户提出以下请求:mydomain.org -> mydomain.org/default.php
默认的.php
<?php
header("location: /old");
?>
如果发出以下请求:mydomain.org/index.php -> mydomain.org/index.php(它不必更改任何内容)
我通过以下方式设置.htaccess文件:
DirectoryIndex default.php index.php
但如果我尝试提出以下请求:mydomain.org/index.php -> mydomain.org/default.php
ps 在服务器的根目录中有 Wordpress 中的新站点(正在进行中),而在“旧”文件夹中有旧站点(不是 wordpress)