典型的网络浏览器地址栏有哪些行为?
我需要一份网络浏览器地址栏行为列表,作为研究实验的一部分。 例如:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
至于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}