apche에서 테스트 페이지가 실패했을 때 시도해 보십시오

개시하다
테스트 페이지에 접근하려면 이런 내용을 표시한 사람이 시도해 보십시오

수정점
이런 분들은 실수할 수도 있어요.
/etc/httpd/conf.d/welcome.conf

<LocationMatch "^/+$">
    Options -Indexes
    ErrorDocument 403 /.noindex.html
</LocationMatch>
이렇게 추가를 해보세요.
/etc/httpd/conf.d/welcome.conf

<LocationMatch "^/+$">
    Options -Indexes
    ErrorDocument 403 /.noindex.html
</LocationMatch>

<Directory /usr/share/httpd/noindex>
    AllowOverride None
    Require all granted
</Directory>

Alias /.noindex.html /usr/share/httpd/noindex/index.html
고찰하다.
테스트 페이지를 표시하지 않는 이유는 다음과 같습니다.
・.테스트 페이지의 파일도 htaccess의 영향을 받을 수 있습니다
→ 비활성화 설정 추가
・ 참조 대상 파일의 경로가 다름
→ Alias로 정의합니다.

좋은 웹페이지 즐겨찾기