19

我有网站http://mywebsite.com如果我点击这个 URL,它将 index.php 和 index.html 作为默认页面。如何将 home.php 作为默认页面。我已经尝试过了,但没有通过将以下代码放在 public_html 的 .htaccess 文件中来工作

DirectoryIndex home.php index.html index.php
4

4 回答 4

29

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

DirectoryIndex home.php
于 2013-04-03T05:04:06.630 回答
13

你需要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>
于 2013-04-03T05:05:15.290 回答
5

DirectoryIndex 指令适用于所有子文件夹,如果要为每个目录设置不同的文件,可以使用 mod-rewrite。

要将/file.html设置为根目录处理程序,您可以在 htaccess 的顶部使用它:

RewriteEngine on
RewriteRule ^$ /file.html [L]

要将不同的文件设置为子文件夹的索引,请使用:

RewriteEngine on
RewriteRule ^subfolder/$ /myfile.html [L]
于 2017-03-07T17:14:31.057 回答
-2

只是尝试重写/index.html/index.php进入/home.php

Options +FollowSymlinks
RewriteEngine on

RewriteCond %{REQUEST_URI} ^/index\.(html|php)
RewriteRule ^(.*) /home.php
于 2013-04-03T05:17:36.177 回答