如何使默认页面主页.php而不是索引.html和索引.php
我有网站 http://mywebsite.com 如果我点击这个URL,它会将索引.php和索引.html作为默认页面。如何将主页.php作为默认页面。我已经尝试过这个,但通过将以下代码放在public_html的.htaccess文件中而无法正常工作。
DirectoryIndex home.php index.html index.php
我有网站 http://mywebsite.com 如果我点击这个URL,它会将索引.php和索引.html作为默认页面。如何将主页.php作为默认页面。我已经尝试过这个,但通过将以下代码放在public_html的.htaccess文件中而无法正常工作。
DirectoryIndex home.php index.html index.php
你只需要在你的工作,使它工作。请记住,这是在根项目的 .htaccess 文件中使用的:home.php
DirectoryIndex
DirectoryIndex home.php
您需要在 中使用.cAllowOverride +Indexes
httpd.conf
DirectoryIndex
.htaccess
除此之外,绝对最简单的重定向方法(无需对Apache配置和模块的root访问权限)是将其作为:index.html
<!doctype html>
<html>
<head>
<meta http-equiv="Refresh" content="0; url=home.php">
</head>
<body>
</body>
</html>