在centos中,安裝完apache和php後,預設情況下是index.php優先權最高.
如果想要更改為index.html優先的話,需要對文件進行如下編輯:
編輯httpd.conf文件,找到DirectoryIndex這行,加上index.php 如下:
DirectoryIndex index.html index.htm index.php
儲存編輯的內容(在vi下,按下esc後輸入 :wq 回車, 即可保存編輯的文字內容並退出)
再修改一下php相關設定檔php.conf:
/conf .d/php.conf 文件中的 DirectoryIndex index.html index.htm index.php這樣優先權的順序為index.html > index.htm > index.php
restart
(如果遇到bash: service: command not found,說明指令路徑有問題, 在指令前面加入/sbin/ 即可)
版權聲明:本文為主部落客原創文章,未經部落客允許不得轉載。
以上就介紹了centos中 ,設定indexhtml 和 indexphp的優先級,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。