apache /var/www/html/子目录没权限访问解决办法

今天在CentOS系统的Apache出现错误:Apache 403 error, (13)Permission denied: access to / denied,搞了好久才搞好,现在把解决办法分享出来。

CentOS系统

检查了一圈httpd.conf和目录权限,均没有发现问题。

最后,看了这篇文章,发现是因为系统启动了SELINUX导致的。

http://stackoverflow.com/questions/8816836/apache-403-error-13permission-denied-access-to-denied-fedora-16


关闭SELINUX

setenforce 0



vim /etc/selinux/config

修改

SELINUX=enforcing

改成

SELINUX=disabled

猜你喜欢

转载自blog.csdn.net/e_wsq/article/details/80368399