cpuer 发表于 2008-12-25 18:16:50

GoDaddy等linux主机.htaccess文件防盗链写法

[*]
[*]RewriteEngine on
[*]
[*]RewriteCond %{HTTP_REFERER} !^$
[*]
[*]RewriteCond %{HTTP_REFERER} !^$
[*]RewriteCond %{HTTP_REFERER} !www.hostloc.com
[*]RewriteCond %{HTTP_REFERER} !bbs.daigou.in
[*]RewriteCond %{HTTP_REFERER} !blog.daigou.in
[*]RewriteCond %{HTTP_REFERER} !daigou.in
[*]RewriteCond %{HTTP_REFERER} !www.zhuaxia.com
[*]RewriteCond %{HTTP_REFERER} !www.google.com
[*]RewriteCond %{HTTP_REFERER} !google.com
[*]RewriteCond %{HTTP_REFERER} !www.google.cn
[*]RewriteCond %{HTTP_REFERER} !google.cn
[*]RewriteCond %{HTTP_REFERER} !www.baidu.com
[*]RewriteCond %{HTTP_REFERER} !www.baidu.cn
[*]RewriteCond %{HTTP_REFERER} !baidu.com
[*]RewriteCond %{HTTP_REFERER} !baidu.cn
[*]RewriteCond %{HTTP_REFERER} !bloglines.com
[*]RewriteCond %{HTTP_REFERER} !www.ask.com
[*]RewriteCond %{HTTP_REFERER} !www.163.com
[*]RewriteCond %{HTTP_REFERER} !www.yahoo.com
[*]RewriteCond %{HTTP_REFERER} !www.sogou.com
[*]RewriteCond %{HTTP_REFERER} !www.soso.com
[*]RewriteCond %{HTTP_REFERER} !www.sina.com.cn
[*]RewriteCond %{HTTP_REFERER} !www.msn.com
[*]RewriteCond %{HTTP_REFERER} !www.feedsky.com
[*]RewriteCond %{HTTP_REFERER} !www.feedburner.com
[*]
[*]RewriteRule .(jpg|gif|psd|zip|rar|mp3|txt|png|wma|wmv) http://daigou.in/404.gif
[*]复制代码将daigou.in改为你的地址!注意防盗链的404.gif不要开启防盗链!
将以上代码
复制上面的代码到记事本
将RewriteRule .(jpg)中的(jpg)增加你所需要防盗的文件扩展名,如(gif|jpg|rar)用|间隔

将 http://daigou.in /404.gif 改为你想转到的图片网址

然后保存,保存时保存类型选所有文件,编码选ANSI,名称填.htaccess

用上传工具上传到你的主机空间根目录,或是你想要设置防盗链的目录,上传模式一定要是二进制上传,国外主机一般一个小时生效。

klocal 发表于 2008-12-25 19:34:36

这个我在美国主机也看过

coo 发表于 2008-12-28 12:56:40

不错哦 还可以防盗链 厉害啊!
static/image/smiley/default/lol.gif
页: [1]
查看完整版本: GoDaddy等linux主机.htaccess文件防盗链写法