我只安裝在Ubuntu一個Apache 2.4 & PHP 5.5.6 12.04阿帕奇2.4錯誤404
當我打電話的web瀏覽器的頁面 - >mysite.com/index.php
,網頁通常與作品展示,但如果我叫頁面mysite.com
(沒有/index.php)我得到錯誤404
,Apache不會自動加載index.php。
我需要在瀏覽器的導航欄中寫這個(該網站也有一個index.html
)。我的虛擬主機mysite.conf
是:
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /home/alexbk/webs/mysite
ErrorLog /home/alexbk/webs/mysite/error.log
CustomLog /home/alexbk/webs/mysite/access.log combined
<Directory /home/alexbk/webs/mysite>
Options Indexes FollowSymLinks MultiViews
Require all granted
AllowOverride All
</Directory>
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet -->
該文件夾沒有和htacess文件。我嘗試更改apache2.conf
,但沒有運氣。
感謝您的幫助
看到這篇文章:http://stackoverflow.com/questions/2384423/index-php-not-loading-by-default –