Apache 显示/索引而不是默认索引 html

Apache 显示/索引而不是默认索引 html

我在 Ubuntu 13.10 上安装了 apache2,它运行正常。我在地址栏中输入 localhost/ 即可看到默认索引页(位于 /var/www/index.html)

Apache 默认页面

今天,我将 Ubuntu 升级到 14.04 后,本地服务器不再工作,而是显示/页面的索引

Apache 索引列表

我尝试重新安装所有软件(包括php5phpMyAdminMySQL),但问题仍然存在。我该如何修复?

答案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

相关内容