Apache 如何防盗链

2016-10-11 19:12:41 6506

首先确定已经加载apache rewrite模块
LoadModule rewrite_module modules/mod_rewrite.so

1) 利用rewrite 确认你的apache 能使用rewrite mod

  RewriteEngine on
   RewriteCond %{HTTP_REFERER} !^http://www.landui.com/.*$      [NC]
   RewriteCond %{HTTP_REFERER} !^http://www.landui.com$      [NC]
   RewriteCond %{HTTP_REFERER} !^http://www.landui.com/.*$      [NC]
   RewriteCond %{HTTP_REFERER} !^http://www.landui.com$      [NC]
   RewriteRule .*.(gif|jpb|png|css|js|swf])$ http://www.landui.com/about/nolink.png [R,NC] #指定图片.
   


2) 利用SetEnvIfNoCase 和 access

    SetEnvIfNoCase Referer "^http://www.landui.com" local_ref=1
    SetEnvIfNoCase Referer "^http://www.landui.com" local_ref=1
    Order Allow,Deny
    Allow from env=local_ref
     




提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: