全新的 Centos 7 + Apache 2 + PHP 5.6 + MySQL 5.6。
配置好域名后,访问网站时,一直是 403 错误。
AH00529: /var/www/****/web/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/var/www/***/web/' is executable
vhost 文件:
<VirtualHost *:80>
ServerAdmin
[email protected]
DocumentRoot /home/webmaster/public_html/web
ServerName
www.example.com
ServerAlias
example.com *.example.com
ErrorLog logs/example.com-error_log
CustomLog logs/example.com-access_log common
<Directory "/home/webmaster/public_html/web">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
如果是访问 web 下的文件,也是同样的报错,只是提示某一个文件不能读取。
1,已经将 web 及其父级文件夹都设置成了 777 或 755 可读写权限;
2,关闭了 firewalld 防火墙;
3,关闭了 SELINUX ;
但是依然报 403 错误,请问如何处理?