📖
아파치 디렉토리에 index.html, index.php 등 기본 파일이 없을 경우 디렉토리 목록 표시 방지
페이지 정보
본문
✅ 해결 방법
1. Indexes 제거 (디렉토리 목록 차단 httpd.conf)[code]<Directory "C:/Apache24/htdocs/home">
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
</Directory>[/code]-Indexes: 디렉토리 인덱싱 금지
+FollowSymLinks: 심볼릭 링크 허용 (기존 설정 유지)
2. Apache 재시작
설정을 저장한 후 명령 프롬프트(관리자 권한) 에서 Apache를 재시작합니다:[code]httpd -k restart[/code]
1. Indexes 제거 (디렉토리 목록 차단 httpd.conf)[code]<Directory "C:/Apache24/htdocs/home">
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
</Directory>[/code]-Indexes: 디렉토리 인덱싱 금지
+FollowSymLinks: 심볼릭 링크 허용 (기존 설정 유지)
2. Apache 재시작
설정을 저장한 후 명령 프롬프트(관리자 권한) 에서 Apache를 재시작합니다:[code]httpd -k restart[/code]
댓글목록
등록된 댓글이 없습니다.
![]() ![]() |