묻고답하기
htaccess 링크차단 제발 도와주세요 ㅠㅠ
2010.11.24 20:42
ftp 접속- > xe폴더->숨은파일보기->htaccess 다운.-> 메모장으로 열기 - >아래 소스 첨부 >저장 ->업로드(덮어씌우기)
이렇게 했는데요 .........결과는..
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, sys@anysecure.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
모든페이지가 이렇게 나오네요... 뭐가 잘못된거죠,,? 닷홈웹호스팅을쓰고있는데 .htaccess 지원한다고했는데...말이죠..
도와주세요...
---------아래서부터 삽입소스----------------
<Directory />
Options FollowSymLinks
AllowOverride None
<IfModule mod_setenvif.c>
SetEnvIF Referer "http://gurdung.dothome.co.kr" pass
SetEnvIf Referer ^$ pass
<FilesMatch ".(gif|jpg|png|bmp|zip|tar|rar|alz|a00|ace|jpg|jpeg|txt|GIF|JPG|BMP|ZIP|TAR|RAR|ALZ|A00|ACE|TXT|mp3|MP3|mpeg|MPEG|wav|WAV|asf|ASF|wmv|WMV|swf|SWF|exe|EXE)$">
Order deny,allow
deny from all
allow from env=pass
ErrorDocument 404 http://wonban.com/
</FilesMatch>
</IfModule>
</Directory>
--------------------------------------------------
위는 이전에 문의한 내용이구요 한분이 답변해주세셔 아크로에디터라는 프로그램을 이용해서 수정을 하여 업로드해보았지만
결과는 마찬가지였습니다.. 도대체 뭐가문제일까요...?
해결해 주십사하고.제가 수정한. htaccess파일을 첨부하였습니다.. 제발 도와주세요!! 목표는 외부링크 차단입니다.!!
아래 내용만 추가 하세요
SetEnvIfNoCase Referer http://gurdung.dothome.co.kr link_allow
SetEnvIfNoCase Referer ^$ link_allow
<FilesMatch ".(flv|swf|mpe?g|mp[1-9]|wm[a-z]*|gif|jpg|JPG|jpeg|bmp)$"> <=== 해당확장자 추가
Order Deny,Allow
Allow from env=link_allow
Deny from all
</FilesMatch>