微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Ubuntu16.04 apache2.4 修改默认根目录

Ubuntu16.04认apt-getinstallapache2安装的apache2.4
apache2.4配置根目录文件
/etc/apache2/sites-available/000-default.conf
认是var/www/html
可以改成想要的目录,比如/home/judge/etc/web

认主页的配置在
/etc/apache2/mods-available/dir.conf
可以为如下格式:index.htmlindex.cgiindex.plindex.PHPindex.xhtmlindex.htm
可以修改为***.html等

2017.8.3更新:

修改认根目录之后会报两个错误

AH00558: apache2: Could not reliably determine the server's fully qualified domain name,using 172.19.158.209. Set the 'ServerName' directive globally to suppress this message

以及
访问localhost:80 报 404 You don't have permission to access / on this server.
解决办法:
一个问题: 其实提示中已经说了让set ServeerName,所以
在/etc/apache2目录下,打开apache2.conf文件,加一句:ServerName localhost:80
第二个问题:
网页上显示404说没有权限访问这个服务器
还是apache2.conf文件,找到
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
allow from all
#Require all denied
</Directory>

Require all denied这一句注释掉,加上allow from all

最后重启apache,发现已经正常了。

参考http://httpd.apache.org/docs/2.4/

原文地址:https://www.jb51.cc/ubuntu/354912.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐