디렉토리 색인이 올바르지 않습니다.

디렉토리 색인이 올바르지 않습니다.

기본 DirectoryIndex home.html을 로드하려고 하는데 사이트가 계속 index.php로 이동합니다. 웹사이트는 WordPress를 기반으로 구축되었습니다.

httpd.conf

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

.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^home\.html$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
</IfModule>

이 문제에 대한 도움을 주시면 대단히 감사하겠습니다.

답변1

HTML 시작 페이지 사용을 고집하는 경우 다음을 수행할 수 있습니다.

  1. index.html의 이름을 default.html로 바꿉니다.
  2. index.php와 동일한 디렉토리에 default.html을 업로드하세요.
  3. DirectoryIndex 값에 default.html을 추가합니다.

FWIW, 이 문제는 WordPress 2.7부터 존재했습니다. 바라보다이 지원 포럼 게시물(지난 기사 2페이지)

관련 정보