gpt4 book ai didi

iis - 如何在IIS上阻止Semalt

转载 作者:行者123 更新时间:2023-12-04 13:50:36 26 4
gpt4 key购买 nike

检查我的Google Analytics(分析)我从semalt.com获得了很多流量。
我知道这是一种垃圾邮件策略,因此我想完全阻止他们的请求,并阻止其出现在我的流量统计信息中。

我在这里http://logorrhoea.net/2014/01/how-to-block-semalt-com-referrer-traffic-using-htaccess/读到,在Apache上可以这样完成:

# block visitors referred from semalt.com
RewriteEngine on
RewriteCond %{HTTP_REFERER} semalt\.com [NC]
RewriteRule .* - [F]

但是我可能需要通过web.config将它用于IIS,但是该怎么做呢?

最佳答案

好的,在这里找到了一些东西:http://tusksoft.com/blog/posts/6/clean-up-your-google-analytics-and-help-stop-referer-spam-with-this-simple-rewrite-rule:

这似乎可行:

<rewrite>
<rules>
<rule name="abort referer spam requests" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_REFERER}" pattern="(semalt\.com)|(buttons\-for\-website\.com)" />
</conditions>
<action type="AbortRequest" />
</rule>
<!--The rest of your rules, if you have any-->
</rules>
</rewrite>

关于iis - 如何在IIS上阻止Semalt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22206912/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com