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

 Ubuntu16.04 默认 apt-get install apache2 安装的apache2.4
apache2.4配置根目录文件在 
/etc/apache2/sites-available/000-default.conf
默认是 var/www/htmlphp

能够改为想要的目录,好比/home/judge/etc/web

默认主页的配置在
/etc/apache2/mods-available/dir.conf
能够为以下格式:index.html  index.cgi  index.pl  index.php index.xhtml index.htm
能够修改成 ***.html等html

修改默认根目录以后会报两个错误web

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 messageapache

以及服务器

访问localhost:80 报 404 You don't have permission to access / on this server.dom

解决办法:ide

第一个问题: 其实提示中已经说了让set ServeerName,因此ui

在/etc/apache2目录下,打开apache2.conf文件,加一句:ServerName localhost:80this

第二个问题:spa

网页上显示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,发现已经正常了。

相关文章
相关标签/搜索