如果我們剛安裝好apache之后一般情況默認首頁是index.html,index.htm這兩種了,如果我讓它默認訪問的不是這兩個文件,而如index.php或abc.php文件呢,這個要怎么改?下面是配置默認主頁的方法。
apache配置方法:
不管是Linux版的還是Windows版的配置方法基本一樣,在你的安裝apache的目錄下找到httpd.conf 這個配置文件,找到以下這段:
- <IfModule dir_module>
- DirectoryIndex index.php index.html index.htm
- </IfModule>
在DirectoryIndex 后面寫上你要設置的默認主頁index.php名稱就可以了,如下:
- <IfModule dir_module>
- DirectoryIndex index.php
- </IfModule>
這種配置會解釋 index.php,需要注意的地方:改動httpd.conf文件后,要重啟一下apache。
新聞熱點
疑難解答