如何将对我的 URL 的请求重定向到 somefile.php 而不是 index.php

如何将对我的 URL 的请求重定向到 somefile.php 而不是 index.php

我如何才能将所有对 www.mysite.com 的请求重定向到 www.mysite.com/index_main.php,然后将 www.mysite.com/index_main.php 重写为 www.mysite.com

答案1

使用 Apache目錄索引指令指定哪个或哪些文件应被视为目录索引。

例子:

DirectoryIndex index_main.php

相关内容