如何使默认页面主页.php而不是索引.html和索引.php

2022-08-30 20:47:50

我有网站 http://mywebsite.com 如果我点击这个URL,它会将索引.php和索引.html作为默认页面。如何将主页.php作为默认页面。我已经尝试过这个,但通过将以下代码放在public_html的.htaccess文件中而无法正常工作。

DirectoryIndex home.php index.html index.php

答案 1

你只需要在你的工作,使它工作。请记住,这是在根项目的 .htaccess 文件中使用的:home.phpDirectoryIndex

DirectoryIndex home.php

答案 2

您需要在 中使用.cAllowOverride +Indexeshttpd.confDirectoryIndex.htaccess

除此之外,绝对最简单的重定向方法(无需对Apache配置和模块的root访问权限)是将其作为:index.html

<!doctype html>
<html>
  <head>
    <meta http-equiv="Refresh" content="0; url=home.php">
  </head>
  <body>
  </body>
</html>

推荐