win2008 IIS7.5 anti-theft Chain configuration Method _win Server

Source: Internet
Author: User
1. Download the IIS rewrite module provided by Microsoft: http://www.microsoft.com/downloads/zh-cn/details.aspx?familyid= 1b8c7bd8-8824-4408-b8fc-49dc7f951a00
2. Modify the web.config of the website or make a web.config with Notepad, remember to change the *txt format to. config code as follows:

Copy Code code as follows:

<system.webServer>
<rewrite>
<rules>
<rule name= "Prevent hotlinking" >
<match url= "^.*\. (rar|zip) $ "ignorecase=" true "/>
<conditions>
<add input= "{http_referer}" pattern= "http://www.jb51.net/.*" negate= "true"/>
<add input= "{http_referer}" pattern= "http://wt.jb51.net/.*" negate= "true"/>
</conditions>
<action type= "Rewrite" url= "/no.html"/>
</rule>
</rules>
</rewrite>
</system.webServer>

Set the RAR, zip-type files that allow only http://www.jb51.net, Http://wt.jb51.net calls to the Web site.
Upload the above file to the root directory of the site (wwwroot) If the site has set pseudo static, directly to the above code into the original Web.config as can be effective

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.