PHP .htaccess 를 이용해서 ip 차단 설정
페이지 정보
본문
불량 사용자나 스패머, 사이트 글을 복제하는 사용자 혹은 특정 웹사이트에서 불필요하게 사이트로 유입되는 경우 .htaccess를 통해 IP나 유입 사이트 주소로 차단할 수 있습니다.
.htaccess 파일 아래와 같이 내용을 생성합니다.
1. 특정 ip 또는 도메인에서의 유입을 차단하기
# allow all except those indicated here
<Files *>
Order allow,deny
Allow from all
Deny from 192.168.1.25
Deny from 192.168.1.26
Deny from .*example\.com.*
</Files>
2. 특정 ip 또는 도메인에서만 유입 허용하기
# allow all except those indicated here
<Files *>
Order deny,allow
Deny from all
Allow from 192.168.1.25
Allow from 192.168.1.26
Allow from .*example\.com.*
</Files>
참고자료
https://whiterabbit.kr/특정-ip-접속-차단하는-방법
https://www.thewordcracker.com/miscellaneous/block-ip-addresses-or-domains-with-htaccess/
https://www.fixcomp.net/bbs/index.php?mid=Pauls_Blog&document_srl=1921
https://darksharavim.tistory.com/145
.htaccess 파일 아래와 같이 내용을 생성합니다.
1. 특정 ip 또는 도메인에서의 유입을 차단하기
# allow all except those indicated here
<Files *>
Order allow,deny
Allow from all
Deny from 192.168.1.25
Deny from 192.168.1.26
Deny from .*example\.com.*
</Files>
2. 특정 ip 또는 도메인에서만 유입 허용하기
# allow all except those indicated here
<Files *>
Order deny,allow
Deny from all
Allow from 192.168.1.25
Allow from 192.168.1.26
Allow from .*example\.com.*
</Files>
참고자료
https://whiterabbit.kr/특정-ip-접속-차단하는-방법
https://www.thewordcracker.com/miscellaneous/block-ip-addresses-or-domains-with-htaccess/
https://www.fixcomp.net/bbs/index.php?mid=Pauls_Blog&document_srl=1921
https://darksharavim.tistory.com/145
댓글목록
등록된 댓글이 없습니다.