一. 使用 rewrite 技术实现 Apache 防盗链
Apache 防盗链的第一种实现方法,可以用 rewrite 实现。首先要确认 Apache 的rewrite module 可用:能够控制 Apache httpd.conf 文件的,打开 httpd.conf,确保有这么一行配置:
LoadModule rewrite_module modules/mod_rewrite.s
然后在找到自己网站对应的 配置的地方,加入下列代码:
ServerName xiaohui.com # 防盗链配置 RewriteEngine On RewriteCond %{HTTP_REFERER} !^http://xiaohui.com /.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://xiaohui.com $ [NC] RewriteCond %{HTTP_REFERER} !^http://www.xiaohui.com /.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.xiaohui.com $ [NC] RewriteRule .*\.(gif|jpg|swf )$ http://www.xiaohui.com/about/nolink.png [R,NC]
防盗链配置的说明 :
然后重新启动 apache 服务器即可。
有些用户使用的是虚拟主机 ,没有服务器的控制权,无法修改 httpd.conf 文件和重启服务器。那么请确认你的虚拟主机支持 .htaccess ,将上面的配置写入 .htaccess 文件,放入根目录或图片所在的目录即可:
.htaccess 文件的内容: # 防盗链配置 RewriteEngine On RewriteCond %{HTTP_REFERER} !^http://xiaohui.com /.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://xiaohui.com $ [NC] RewriteCond %{HTTP_REFERER} !^http://www.xiaohui.com /.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.xiaohui.com $ [NC] RewriteRule .*\.(gif|jpg|swf )$ http://www.xiaohui.com/about/nolink.png [R,NC]
注意:
另一种方式是利用 SetEnvIfNoCase 和 access 。具体的代码如下:
SetEnvIfNoCase Referer "^http://xiaohui.com " local_ref=1 SetEnvIfNoCase Referer "^http://www.xiaohui.com " local_ref=1 Order Allow,Deny Allow from env=local_ref
将上述代码,放入前面所讲的 httpd.conf 或 .htaccess 文件即可。
通过判断 referer 变量 的值,判断图片或资源的引用是否合法,只有在设定范围内的 referer,才能访问指定的资源,从而实现了防盗链(Anti-Leech) 的目的。需要指出的是:不是所有的用户代理(浏览器)都会设置 referer 变量,而且有的还可以手工修改 referer,也就是说,referer 是可以被伪造的。本文所讲的,只是一种简单的防护手段。当然,应付一般的盗链也足够了。