PHP disables Image leeching

Source: Internet
Author: User
1. assume that the host domain name of the link image is www. test. com2, fixed httpd. confSetEnvIfNoCaseReferer "^ http://www.test.com/" local_ref = 1 FilesMatch ". (gif | jpg) "OrderAllow, DenyAllowfromenv =

1. assume that the host domain name of the link image is www.test.com.

2. modify httpd. conf.

SetEnvIfNoCase Referer '^ http://www.test.com/' local_ref = 1

Order Allow, Deny
Allow from env = local_ref

 


This simple usage not only solves the problem of image leeching titles, but also prevents any file leeching download titles.

When the above method is used to link images from unspecified hosts, the images cannot be displayed. if you look forward to displaying a picture of "anti-leeching", we can use mod_rewrite.

Add the -- enable-rewrite parameter to load the mod_rewrite module when installing apache.

Assume that the image of the anti-Leech feature is abc.gif. we can configure it in httpd. conf as follows:


RewriteEngine on
RewriteCond % {HTTP_REFERER }! ^ $
RewriteCond % {HTTP_REFERER }! ^ Http: // (www \.)? Test.com/. * $ [NC]
RewriteRule \. (gif | jpg) $ http://www.test.com/abc.gif [R, L]
 


When the host image is leeched, only the "leeching prohibited" image of abc.gif is displayed!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.