gpt4 book ai didi

email - Bingpreview 使电子邮件中的一次性链接失效

转载 作者:行者123 更新时间:2023-12-04 14:55:41 25 4
gpt4 key购买 nike

Outlook.com 似乎使用了 BingPreview爬虫抓取电子邮件中的链接。

但一次性链接在打开电子邮件后和用户有机会使用它们之前被标记为已使用/已过期。

我尝试在 <a> 中添加一个 rel="nofollow"但没有成功。

如何阻止电子邮件中每个链接的爬虫?

谢谢

最佳答案

我也这样做了。

$user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
// Deny access for the BingPreview bot, used by outlook.com on links in e-mails ad Slackbot
if (strpos($user_agent, 'BingPreview') !== false || strpos($user_agent, 'Slackbot') !== false) {
header('Status: 403 Forbiden', true, 403);
exit(1);
}

关于email - Bingpreview 使电子邮件中的一次性链接失效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41699071/

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