gpt4 book ai didi

apache - 如何使用 .htaccess 重定向错误的引用?

转载 作者:行者123 更新时间:2023-12-04 19:21:57 26 4
gpt4 key购买 nike

我从一个伪造谷歌图片搜索的机器人收到垃圾邮件,我想将所有流量从该引用者重定向到其他地方,我该怎么做?

不良流量的referer字符串总是有http://www.google.com/imgres?imgurl在 imgurl 部分之后以更长的字符串开头。

我已经尝试过了,但它不起作用:

RewriteCond %{HTTP_REFERER} ^http://www.google.com/imgres?imgurl  [NC]
RewriteRule ^(.*)$ http://redirecthere.com/$1 [R=302,L]

最佳答案

apache 重写引擎使用正则表达式和 ?在正则表达式中意味着前面的 char 是可选的。所以你必须逃避?
这个应该工作:

RewriteCond %{HTTP_REFERER} ^http://www.google.com/imgres\?imgurl  [NC]
RewriteRule ^(.*)$ http://redirecthere.com/$1 [R=302,L]

关于apache - 如何使用 .htaccess 重定向错误的引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14464065/

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