我有网站http://mywebsite.com如果我点击这个 URL,它将 index.php 和 index.html 作为默认页面。如何将 home.php 作为默认页面。我已经尝试过了,但没有通过将以下代码放在 public_html 的 .htaccess 文件中来工作
DirectoryIndex home.php index.html index.php
我有网站http://mywebsite.com如果我点击这个 URL,它将 index.php 和 index.html 作为默认页面。如何将 home.php 作为默认页面。我已经尝试过了,但没有通过将以下代码放在 public_html 的 .htaccess 文件中来工作
DirectoryIndex home.php index.html index.php
你只需要home.php
在你DirectoryIndex
的让它工作。请记住,这是在根项目的 .htaccess 文件中使用的:
DirectoryIndex home.php
你需要AllowOverride +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>
DirectoryIndex 指令适用于所有子文件夹,如果要为每个目录设置不同的文件,可以使用 mod-rewrite。
要将/file.html设置为根目录处理程序,您可以在 htaccess 的顶部使用它:
RewriteEngine on
RewriteRule ^$ /file.html [L]
要将不同的文件设置为子文件夹的索引,请使用:
RewriteEngine on
RewriteRule ^subfolder/$ /myfile.html [L]
只是尝试重写/index.html
并/index.php
进入/home.php
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/index\.(html|php)
RewriteRule ^(.*) /home.php