[ php ] 이미지 직접 링크 막기
페이지 정보
작성자 웹지기 댓글 0건 조회 5,302회 작성일 18-09-11 12:39본문
.htaccess 파일에 추가해서 사용
SetEnvIfNoCase Referer "^http://www.mydomain.com/" locally_linked=1
SetEnvIfNoCase Referer "^http://www.mydomain.com$" locally_linked=1
SetEnvIfNoCase Referer "^http://mydomain.com/" locally_linked=1
SetEnvIfNoCase Referer "^http://mydomain.com$" locally_linked=1
#SetEnvIfNoCase Referer "^$" locally_linked=1
<FilesMatch ".(gif|png|mp3|bmp|jpg|jpeg)$">
Order Allow,Deny
Allow from env=locally_linked
</FilesMatch>
추천0 비추천0
관련링크
댓글목록
등록된 댓글이 없습니다.