URL 中的协议名称区分大小写吗?
hTTp://foo.com
与 Http://foo.COM
相同吗?
我知道主机名不敏感,但路径名和查询部分敏感。
Is hTTp://foo.com
the same as Http://foo.COM
?
I know that hostnames are not sensitive but path names and query parts are sensitive.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
该方案不区分大小写: https://www.rfc-editor.org /rfc/rfc3986#section-3.1
主机名也不区分大小写,因为它是 DNS。
其余部分区分大小写。
The scheme is case-insensitive: https://www.rfc-editor.org/rfc/rfc3986#section-3.1
The hostname is also case-insensitive, since it's DNS.
The rest is case sensitive.
实践中并不敏感,但理论上只允许小写。
来自 RFC 1738
It is not sensitive in practice but in theory only lower case is allowed.
From RFC 1738
引用 RFC3986:
Citing RFC3986:
那么此文档(对于某些HTML规范)说:
,并且 RFC1738(统一资源定位器 (URL)) 表示(注意,URL 的格式为
:
):因此只允许使用小写字符,但允许使用大写字符。
顺便说一句,Safari 会自动转换为小写字符。
Well this document (for some HTML specification) says:
And RFC1738 (Uniform Resource Locators (URL)) says (note, a URL has the form
<scheme>:<scheme-specific-part>
):So only lowercase characters are allowed, but uppercase characters are tolerated.
Btw Safari automatically converts to lowercase characters.