0
我已經配置了我的新安裝的Apache。當我試圖在瀏覽器中放入local.myproject
時,它開始在谷歌上搜索。就像鏈接不工作。有人可以告訴我會發生什麼嗎?我試圖重新啓動apache並重新加載conf文件。Apache2 Ubuntu配置顯示谷歌搜索
網站,速效/ myproject.conf:
ServerName local.myproject
DirectoryIndex index.php index.html
DocumentRoot /home/programmer/NetBeansProjects/myproject/public
ErrorLog ${APACHE_LOG_DIR}/error_1.log
CustomLog ${APACHE_LOG_DIR}/access_1.log combined
<Directory /home/programmer/NetBeansProjects/myproject/public>
Options FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
/etc/hosts文件:
127.0.0.1 localhost
127.0.1.1 computer
127.0.0.1 local.myproject
可能是重新加載apache的問題。嘗試'sudo /etc/init.d/apache2 reload' –
重置瀏覽器的緩存。 – Kyslik
重新啓動系統後,鏈接顯示我的Apache信息頁面,而不是我的項目索引... – Terrorizer