1、修改Apache伺服器的預設首頁: ( 建議學習中:Apache ( 建議學習:Apacheacheo
pache)伺服器#pache# ,預設是直接存取htdocs目錄下的index.html,這是在conf/httpd.conf中配置的。查到conf/httpd.conf中的<IfModule dir_module>
DirectoryIndex index.php index.html
</IfModule>
2、存取Apache伺服器時預設開啟指定項目的首頁:
存取Apache下的項目,透過存取路徑是:http://localhost:80/專案名稱,有時候要求造訪http://locahost時就開啟指定項目的首頁,這裡介紹兩種方法。第一種:將專案的所有檔案放到htdocs下,首頁設定為index.html或index.php。但是這樣子會顯得很亂,不方便管理。因此不推薦。
第二種:修改conf/httpd.conf檔案
DocumentRoot "D:/Program Files/Apache Software Foundation/PHPWorkspace/test"
<Directory "D:/Program Files/Apache Software Foundation/PHPWorkspace/test"> Options -Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all #指定访问顺序 DirectoryIndex index.php index.html </Directory>
以上是設定Apache伺服器的預設首頁的詳細內容。更多資訊請關注PHP中文網其他相關文章!