防止图像热链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了防止图像热链接相关的知识,希望对你有一定的参考价值。

stop bandwidth theft!
  1. #Stop Image Hotlinking
  2. RewriteEngine on
  3. RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?yourdomain.com [NC]
  4. RewriteCond %{HTTP_REFERER} !^$
  5. RewriteCond %{HTTP_REFERER} !google. [NC]
  6. RewriteCond %{HTTP_REFERER} !search?q=cache [NC]
  7. RewriteCond %{HTTP_REFERER} !msn. [NC]
  8. RewriteCond %{HTTP_REFERER} !yahoo. [NC]
  9. RewriteCond %{REQUEST_URI} !^/images/fake_image.jpg$
  10. RewriteRule .(jpe?g|png|gif)$ /images/fake_image.jpg [NC,R,L]

以上是关于防止图像热链接的主要内容,如果未能解决你的问题,请参考以下文章

HTML代码片段

防止热链接

防止热链接

如何使用AWS WAF防止热链接

什么是热链接图像的合法替代方案?

分享前端开发常用代码片段