当前位置:首页 > PHP教程 > Apach > 列表

rewrite 技术实现 Apache 防盗链

发布:smiling 来源: PHP粉丝网  添加日期:2013-11-23 21:09:38 浏览: 评论:0 

apache 防盗链的第一种实现方法,可以用 rewrite 实现。首先要确认 apache 的 rewrite module 可用:能够控制 apache httpd.conf 文件的,打开 httpd.conf,确保有这么一行配置: 

  1. loadmodule rewrite_module modules/mod_rewrite.so 

在找到自己网站对应的 配置的地方,加入下列代码: 

  1. servername phpfensi.com  
  2. # 防盗链配置  
  3. rewriteengine on  
  4. rewritecond %{http_referer} !^http://phpfensi.com/.*$ [nc]  
  5. rewritecond %{http_referer} !^http://phpfensi.com$ [nc]  
  6. rewritecond %{http_referer} !^http://www.phpfensi.com/.*$ [nc]  
  7. rewritecond %{http_referer} !^http://www.phpfensi.com$ [nc]  
  8. rewriterule .*.(gif|jpg|swf)$ http://www.phpfensi.com/about/nolink.png [r,nc] 

Tags: rewrite Apache 防盗链

分享到: