.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable

리눅스/APACHE|2015. 1. 16. 16:59
반응형

아파치 오류에 아래와 같은 오류 메세지가 발생하면서, 브라우저에서는 403 에러가 뜰 경우

(당시 서버 버전 CentOS 6.4)


.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable


selinux 를 중지 시키면 됩니다.

아래는 일시적으로 disabled 시키는 방법입니다.


[root@sysdocu ~]# setenforce 0


리부팅 후에도 적용시키고자 할때, /etc/sysconfig/selinux 파일을 열어 설정값을 수정해줍니다.


SELINUX=disabled


리부팅 후에도 동일 증상이 발생 될경우


/etc/rc.d/rc.local 에 등록하여 부팅시 자동으로 명령이 내려질수 있도록 합니다.


* 참고 : 이 외에도 .htaccess 가 존재하는 디렉토리의 퍼미션 문제,

            httpd.conf 의 Directory 부분에 'Deny from all' 을 'Allow from all' 으로 해결하는 경우도 있습니다.


반응형

댓글()