首页 > 网站 > Apache > 正文

Apache中利用mod_rewrite实现防盗链

2024-08-27 18:30:09
字体:
来源:转载
供稿:网友
 前提Apache中的mod_rewrite模块为激活状态,既然要消灭掉mp3文件的盗链就顺便也把图片盗链的设置给做了,下面是我在网站根目录的.htaccess文件中的配置,供同病相怜之人参考:。 
view plaincopy to clipboardprint?<ifmodule mod_rewrite.c>  #开启mod_rewrite引擎   RewriteEngine On  #设置合法请求源   
  • <ifmodule mod_rewrite.c>  
  • #开启mod_rewrite引擎   
  • RewriteEngine On  
  • #设置合法请求源   
  • RewriteCond %{HTTP_REFERER} !^$ [NC]   
  • RewriteCond %{HTTP_REFERER} !zhangzhang.net [NC]   
  • RewriteCond %{HTTP_REFERER} !google.com [NC]   
  • RewriteCond %{HTTP_REFERER} !baidu.com [NC]   
  • RewriteCond %{HTTP_REFERER} !yahoo.com [NC]   
  • RewriteCond %{HTTP_REFERER} !msn.com [NC]   
  • RewriteCond %{HTTP_REFERER} !bloglines.com [NC]   
  • RewriteCond %{HTTP_REFERER} !feedburner.com [NC]   
  • RewriteCond %{HTTP_REFERER} !feedsky.com [NC]  
  • #指向警告页面   
  • RewriteRule .*/.(gif|jpg|png|mp3)$ outlink.gif [L,NC]   
  • </ifmodule> 
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表