아파치 Directory index forbidden by Options directive 에러메세지




Directory index forbidden by Options directive: /home/example/www/testdir/


이런 에러 메시지가 error_log 에 기록된다면 크게 신경쓸 일은 아닌 것 같다.


URL 호출시 아파치 설정파일에 DirectoryIndex 설정에서 정의된 파일이 없으면 에러 로그에 기록이 된다.


DirectoryIndex index.html index.php index.html.var


http://www.example.com/testdir 로 url 을 열었을때 해당 디렉토리에 위의 파일을 찾지 못하면 에러로 기록 된다는 의미이다.



<Directory "/home/*/www">

    ...

    Options Indexes FollowSymLinks

    ...

</Directory>


위 처럼 설정해서 에러가 기록되지 않고 해당 디렉토리의 리스트를 보여줄 수도 있지만 보안상 좋지 않기 때문에


Indexes 는 안 넣어주는게 맞는 것 같다.


블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,