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