使用web.config阻止semalt.com抓取工具

时间:2014-08-20 20:25:07

标签: block web-crawler robot web-config

如果这个问题已在其他地方得到解答,我很抱歉。我试图阻止semalt蜘蛛爬行网站,但在Windows系统(没有IIS访问)。经过几个小时的谷歌搜索后,我想出了这个(但由于该网站仍然受到影响,它无法正常工作):

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.webServer>
     <rewrite>
      <rules>
        <rule name="block semalt referer" patternSyntax="Wildcard" stopProcessing="true">
          <match url="*" />
          <conditions>
            <add input="{HTTP_REFERER}" pattern="*.semalt.com" />
          </conditions>
          <action type="AbortRequest" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

有人可以告诉我我做错了什么吗?窗户不是我的力量......

0 个答案:

没有答案