묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
.htaccess 이용한 ip차단
2009.10.26 19:58
.htaccess 이용한 ip차단을 할때
SetEnvIfNoCase remote_addr 123.45.123.45 go_out
Order Allow,Deny
Allow from all
Deny from env=go_out
이렇게 됩니다
그럼 ip차단한 ip로 접속할때 메시지를 뛰우려고 합니다
어떻게 해되나요?
참고로 ErrorDocument 403 /403.html 이것도 먹히지가 않습니다
제가 쓰고 있는 겁니다.
RewriteCond %{REMOTE_ADDR} "^(66.24(8|9).|74.6|77.91.224|87.118.108.20|122.131.164.143|87.118.122.63|200.63.42.91|84.244.189.99)"
RewriteRule ^(.+) site_information.php [L]
이건 타 주소로 포워딩 시킬때 사용하는 방법
RewriteRule ^(.*) http://도메인.com [R=301,L]
그 외는 아래 주소 참고해보세요.
http://www.xpressengine.com/16724165