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로 정의합니다.
Reference
이 문제에 관하여(apche에서 테스트 페이지가 실패했을 때 시도해 보십시오), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/watanabe-tsuyoshi/items/39e260c00e3876b982e1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)