链接在 中不起作用当内容中有 .com 时标记

发布于 2024-11-17 17:46:19 字数 322 浏览 2 评论 0原文

在我的代码中,我生成了 html 电子邮件消息的正文。部分内容如下:

<a href="mylink.pl">SomeName.com</a>

当我在邮件客户端或 Gmail 中收到此电子邮件时,当我单击链接时,我将被定向到 SomeName.com 而不是 mylink.pl 位于 标记的 href 部分。而且这种情况似乎仅发生在 .com 域中。

我有什么想法可以处理这个问题吗?

in my code I generate a body of a html email message. Part of it is following:

<a href="mylink.pl">SomeName.com</a>

When I receive this email in my Mail client or in Gmail and when I click the link I'm directed to the SomeName.com and not to the mylink.pl which is in the href part of the <a> tag. And it looks that this situation occurs only for the .com domains.

Any ideas how I could deal with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘寄 2024-11-24 17:46:19

在电子邮件中使用绝对 URI。它们(通常)以 http:// 开头。

您拥有的是相对 URI,这在电子邮件中没有多大意义。当您尝试访问浏览器时,您可能只是点击了浏览器的搜索功能。

Use absolute URIs in emails. They start with (usually) http://

What you have is a relative URI, which doesn't make much sense in an email. You are probably just hitting your browser's search function when you try to visit it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文