每天一个 HTTP 状态码 206


206 Partial Content

206 Partial Content 是当客户端请求时使用了 Range 头部,服务器端回复的响应,表示只响应一部分内容。

实例

请求:

GET /favorites/hhh.mp4 HTTP/2
Range: bytes=12345678-87654321

响应:

HTTP/2 206 Partial Content
Content-Range: bytes 12345678-87654321/98765432
Content-Type: video/mp4

参考

  • List of HTTP status codes
  • HTTP response status codes
  • 206 Partial Content