HTTP 协议
HTTP/1.1
2014 年 6 月的时候 IETF 已经正式的废弃了 RFC 2616 ,将它拆分为六个单独的协议说明,并重点对原来语义模糊的部分进行了解释:
- RFC 7230 - HTTP/1.1: Message Syntax and Routing - low-level message parsing and connection management
- RFC 7231 - HTTP/1.1: Semantics and Content - methods, status codes and headers
- RFC 7232 - HTTP/1.1: Conditional Requests - e.g., If-Modified-Since
- RFC 7233 - HTTP/1.1: Range Requests - getting partial content
- RFC 7234 - HTTP/1.1: Caching - browser and intermediary caches
- RFC 7235 - HTTP/1.1: Authentication - a framework for HTTP authentication
相关资料:
HTTP/2
HTTP 协议的 2.0 版本还没有正式发布,但目前已经基本稳定下来了。
2.0 版本的设计目标是尽量在使用层面上保持与 1.1 版本的兼容,所以,虽然数据交换的格式发生了变化,但语义基本全部被保留下来了。
因此,作为使用者而言,我们并不需要为了支持 2.0 而大幅修改代码。