将 HTTP 连接放置在现实世界中的问题:标头位于末尾
将 HTTP Connection: 字段放在标头末尾是否存在任何已知问题?
来自标准(RFC2616,第 4.2 节):
首先发送通用标头字段(其中包括
连接
),然后发送请求标头或响应是“良好做法” -标头字段,并以实体标头字段结尾。
如果我违反了 Connection
HTTP 标头的“良好实践”,我会受到惩罚吗?
Are there any known problems with putting the HTTP Connection: field at the end of the headers?
From the Standard (RFC2616, section 4.2):
it is "good practice" to send general-header fields first (which includes
Connection
), followed by request-header or response-header fields, and ending with the entity-header fields.
Am I gonna get bit if I violate the "good practice" for the Connection
HTTP Header?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只是“良好实践”,而不是要求。 HTTP 实现需要支持以任何顺序出现的标头。
It is "good practice" only, not a requirement. HTTP implementations are required to support headers appearing in any order.