我在 Ubuntu 13.10 上安装了 apache2,它运行正常。我在地址栏中输入 localhost/ 即可看到默认索引页(位于 /var/www/index.html)
今天,我将 Ubuntu 升级到 14.04 后,本地服务器不再工作,而是显示/页面的索引
我尝试重新安装所有软件(包括php5
、phpMyAdmin
和MySQL
),但问题仍然存在。我该如何修复?
答案1
你应该编辑000-default.conf
文件
要编辑,000-default.conf
您可以使用具有 root 权限的文本编辑器打开它,例如:
sudo -H gedit /etc/apache2/sites-available/000-default.conf
默认DocumentRoot
如下:
DocumentRoot /var/www/html
您需要将其更改DocumentRoot
为:
DocumentRoot /var/www/
保存文件并退出。
此后您必须重新启动 Apache 服务器:
sudo /etc/init.d/apache2 restart