您好,登錄后才能下訂單哦!
Apache的默認首頁為index.html,當我們需要改首頁文件或者增加首頁文件時,可以在httpd.conf文件中增加配置語句。
httpd.conf首頁文件默認配置語句如下:
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
如果我們需要增加首頁文件xxx.htm時,可以在DirectoryIndex index.html下增加加一行語句DirectoryIndex xxx.htm,優先級從上到下。
例如我需要增加index.htm、defaul.htm、index.php文件,配置語句需改為:
<IfModule dir_module>
DirectoryIndex index.html
DirectoryIndex index.htm
DirectoryIndex default.htm
DirectoryIndex index.php
</IfModule>
改好后保存,需重啟Apache后才能生效。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。