红联Linux门户
Linux帮助

Apache2新建虚拟路径403不能访问问题

发布时间:2016-08-24 10:31:46来源:linux网站作者:Mir_憨豆先生
操作系统:ubuntu16.04.1 LTS
装的服务器是apache2。默认路径是/var/www
我又新建了一个路径是/var/newdir
 
结果访问不了。要在apache2.conf里面加上:
<Directory /var/newdir>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
 
然后,需要在sites-avalilable/000-default.conf
也要要加上:
<Directory /var/newdir>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
 
不要少了Require all granted.
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23576.html