href 值附加在服务器名称之后

发布于 2025-01-08 13:21:14 字数 231 浏览 1 评论 0原文

我指定请访问Yahoo,浏览器会在前面附加服务器名称,例如https://susref。 congnos.com/www.yahoo.com

我应该将 href 更改为 Yahoo 会解决这个问题吗?

I am specifying Please visit <a href="www.yahoo.com">Yahoo</a> and the browser appends the server name in front e.g. https://susref.congnos.com/www.yahoo.com

Should I change my href to <a href="https:\\www.yahoo.com">Yahoo</a> will solve the issue?

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

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

发布评论

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

评论(2

枕梦 2025-01-15 13:21:14

在 href 中的 url 前面添加 http://

例如 访问 Yahoo

Add http:// on the front of the url in your href.

e.g. <a href="http://www.yahoo.com">Visit Yahoo</a>

唐婉 2025-01-15 13:21:14

您需要指定方案,例如,

<a href="http://www.yahoo.com">Please visit Yahoo</a>

而不是没有方案(http:// 位)

<a href="www.yahoo.com">Please visit Yahoo</a>

浏览器假定链接与您的网站相关,

You need to specify the scheme e.g.

<a href="http://www.yahoo.com">Please visit Yahoo</a>

Instead of

<a href="www.yahoo.com">Please visit Yahoo</a>

Without the scheme (the http:// bit) the browser assumes the link is relative to your site

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