Below you will find pages that utilize the taxonomy term “防盗链”
December 5, 2008
Apache实现图片防盗链
"Apache实现图片防盗链以及,显示一张“禁止盗链”的图片,我们可以用mod_rewrite 来实现。\n假设充许连结图片的主机域名为:tech.ddvip.com\n修改httpd.conf\nSetEnvIfNoCase Referer “^” local_ref=1\nOrder Allow,Deny\nAllow from env=local_ref\n这个简单的应用不光可以解决图片盗链的问题,稍加修改还可以防止任意文件盗链下载的问题。\n使用以上的方法当从非指定的主机连结图片时,图片将无法显示。\n如果希望显示一张“禁止盗链”的图片,我们可以用mod_rewrite 来实现。\n首先在安装 apache 时要加上 –enable-rewrite 参数加载 mod_rewrite 模组。\n假设“禁止盗链”的图片为abc.gif,我们在 httpd.conf 中可以这样配置:\nRewriteEngine on\nRewriteCond %{HTTP_REFERER} !^$\nRewriteCond %{HTTP_REFERER} !^http://(tech.)?ddvip.com /.*$ …"