典型的网络浏览器地址栏有哪些行为?

发布于 2024-10-15 05:26:05 字数 381 浏览 5 评论 0原文

我需要一份网络浏览器地址栏行为列表,作为研究实验的一部分。 例如:

1) 最基本的行为是键入完整的网址,例如 http://www.abc.com,然后按 ENTER 键导航到该网站。

2) 仅键入域名(例如 abc)并按 CTRL+ENTER(在 Windows 上)会自动在前面添加 http:// 并附加 .com< /code> 并导航到网站。

3) 在某些情况下,输入 abc.com 并按 Enter 会导航到 http://www.abc.com - 这里的精确启发式是什么?

... ETC。

I need a list of web browser address bar behaviors, as part of a research experiment.
For example:

1) The most basic behavior is to type a full web address, e.g. http://www.abc.com and press ENTER to navigate to the web site.

2) Typing just a domain name (e.g. abc) and pressing CTRL+ENTER (on Windows) automatically prepends the http:// and appends the .com and navigates to the web site.

3) In some cases typing abc.com and pressing ENTER navigates to http://www.abc.com - what is the precise heuristic here?

... etc.

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

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

发布评论

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

评论(1

过潦 2024-10-22 05:26:05

至于3),我确实认为这是一个重定向,这是在服务器端完成的(也就是说,服务器注意到您正在尝试直接访问域并重定向到www.*),因此没有特定于浏览器的这里的行为。

例如,Google Chrome 将所有没有有效顶级域后缀或协议前缀(例如 http://)的内容视为搜索查询,按下 Enter 键后,您将进入 Google.com?q={询问}

As for 3), I do think that it's a redirect, which is being done on the server-side (that is, the server notices you are trying to access the domain directly and redirects to www.*), so no browser-specific behavior here.

And Google Chrome for example treats everything that does not have a valid top-level domain suffix or protocol prefix (such as http://) as a search query, which, on pressing Enter, leads you to Google.com?q={query}

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