묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
httpd.conf의 DirectoryIndex 설정이 적용되지 않습니다.
2009.06.19 13:09
Fedora 10에서 제로보드 xe 1.2.2를 올려 사용하고 있습니다.
잠시 사이트의 접근을 막기 위해 안내 페이지를 만들어서 index.html로 저장했습니다.
index.html의 위치는 index.php가 있는 디렉토리와 같습니다.
httpd.conf 파일의 DirectoryIndex는 아래와 같이 설정했습니다.
DirectoryIndex index.html index.php
그런데 index.html을 불러들이지 않고 계속 index.php를 불러들입니다.
index.html과 index.php이 같은 디렉토리에 있으면 index.html을 읽어들여야 하는것 아닌가요?
혹시나 해서 아래와 같이 설정했는데도... index.php 파일을 읽어들이네요.
DirectoryIndex index.html
물론... httpd 서비스는 재실행을 했습니다.
KLDP의 세이군님의 도움으로 해결했습니다. /etc/httpd/conf/httpd.conf 파일에 외에 /etc/httpd/conf.d/php.conf 파일에도 DirectoryIndex 설정이 있었습니다. php.conf 파일에 있는 DirectoryIndex 설정이 우선 적용되는 것 같더군요. 둘 중에 한 개를 주석처리하거나 지우니까 잘 작동합니다.