嗨,我正在一個項目,我有兩個索引文件的根,一個是index.php和其他是index.html。我想o設置默認頁面index.php,如果它不可用,那麼它應該爲index.html工作。 我在互聯網上搜索了很多,並找到了以下解決方案。無法在apache2中設置默認索引頁[Debian 7.1]
DirectoryIndex index.php index.html
我使用我的網站上這樣的代碼:
<Directory "/home/zhengyu/webroot/engine5g/rentown.com/">
DirectoryIndex index.php index.html default.htm
</Directory>
我也曾嘗試另一種方式:
<Directory "/home/zhengyu/webroot/engine5g/rentown.com/">
DirectoryIndex index.php index.html
Options Indexes FollowSymLinks MultiViews
AllowOverride None
DirectoryIndex index.php index.html
Order allow,deny
allow from all
</Directory>
但他們沒有工作,它總是讓index.php文件默認,但是當它不可用時它不會加載index.html。
如果我先編寫index.html然後index.php,然後加載index.html,但如果index.html不可用,則不加載index.php。
總之,我們可以說首選項不起作用。
我已經試過這個,但它不起作用 –
@Insomania你可以在這裏粘貼你的htacess規則嗎? – Suresh
@Insomania我認爲你有路徑問題'/ home/zhengyu/webroot/engine5g/rentown.com /';嘗試改變它。 – Suresh