gpt4 book ai didi

wordpress - 试图用 apache 阻止谷歌脚本

转载 作者:行者123 更新时间:2023-12-04 09:00:05 24 4
gpt4 key购买 nike

有人使用 Google Scripts 向我的服务器发出请求,但我不知道如何阻止它。这是我的 apache access.log 的一部分:

107.178.224.172 - - [26/Aug/2020:09:27:49 +0000] "GET / HTTP/1.1" 404 4136 "-" "Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd_ShAsltnvAuXhIA9JjNYyHv4J10nc)"
107.178.195.11 - - [26/Aug/2020:09:04:46 +0000] "GET / HTTP/1.1" 200 4795 "-" "Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd_ShAsltnvAuXhIA9JjNYyHv4J10nc)"
35.187.134.84 - - [26/Aug/2020:09:32:47 +0000] "GET / HTTP/1.1" 404 4120 "-" "Mozilla/5.0 (compatible; Google-Apps-Script; beanserver; +https://script.google.com; id: UAEmdDd_ShAsltnvAuXhIA9JjNYyHv4J10nc)"
正如您所看到的,它正在使用不同的 IP 执行请求,这降低了我的服务器的速度。我怎样才能阻止它?

最佳答案

在您的网络服务器 .htaccess 文件中:

RewriteCond %{HTTP_USER_AGENT} ^.*beanserver.*$ [NC]
RewriteRule .* - [R=403,L,E=WHY:Bad_UA]
这将测试任何包含“beanserver”的用户代理,并以 403 错误拒绝请求。
此外,它会将环境变量“WHY”设置为值“Bad_UA”,如果需要,可以在您的 403.php 脚本中使用该值。

关于wordpress - 试图用 apache 阻止谷歌脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63595049/

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