要更改Apache的默認起始頁面(索引頁面),您需要編輯Apache的配置文件。根據您使用的操作系統和安裝方式的不同,配置文件的位置可能會有所不同。以下是一般可用的位置:
Ubuntu/Debian:/etc/apache2/apache2.conf
或 /etc/apache2/sites-enabled/000-default.conf
CentOS/RHEL:/etc/httpd/conf/httpd.conf
或 /etc/httpd/conf.d/welcome.conf
macOS:/etc/apache2/httpd.conf
打開配置文件后,找到 DirectoryIndex
指令。該指令定義了Apache按順序查找的文件名稱列表,以確定默認的索引頁面。默認情況下,它通常設置為:
DirectoryIndex index.html index.php
您可以根據您的需求更改這個列表。例如,如果您想將 index.html
放在第一位,則可以將指令更改為:
DirectoryIndex index.html index.php index.htm
保存配置文件后,重新啟動Apache服務器以使更改生效。根據您的操作系統和安裝方式,可以使用以下命令重啟Apache:
Ubuntu/Debian:sudo service apache2 restart
CentOS/RHEL:sudo systemctl restart httpd
macOS:sudo apachectl restart
現在,當訪問Apache服務器時,它將首先查找 index.html
,然后是 index.php
,最后是 index.htm
。如果找到其中任何一個文件,則將其作為默認的索引頁面。