tool::http-status-detail
206 Partial Content
The server is returning partial content due to a Range header.
상태 코드
206
이름
Partial Content
카테고리
2xx상세 설명
HTTP 206 Partial Content는 서버가 요청의 일부분만 반환하고 있음을 나타냅니다. 클라이언트가 Range 헤더로 특정 바이트 범위를 요청했을 때 사용합니다. 대용량 파일 다운로드 재개, 동영상 스트리밍, 청크 단위 데이터 전송에 핵심적인 응답 코드입니다.
주요 원인
- ▸클라이언트가 Range 헤더로 파일의 일부분을 요청한 경우
- ▸중단된 다운로드를 이어받기 위해 특정 오프셋부터 요청한 경우
- ▸동영상 플레이어가 특정 구간부터 스트리밍을 요청하는 경우
- ▸멀티스레드 다운로드로 파일을 분할하여 받는 경우
해결 방법
- 1.206은 정상 응답이므로 수정이 필요하지 않습니다
- 2.서버에서 Accept-Ranges: bytes 헤더를 지원해야 합니다
- 3.Content-Range 헤더에 반환되는 범위를 명확히 표시하세요
- 4.전체 파일을 원한다면 Range 헤더 없이 다시 요청하세요
관련 HTTP 헤더
Content-RangeAccept-RangesContent-LengthETag응답 예시
HTTP/1.1 206 Partial Content Content-Range: bytes 0-1023/10240 Content-Length: 1024 Content-Type: video/mp4 [binary data...]
관련 상태 코드
200OKThe request has succeeded.→201CreatedThe request has been fulfilled and a new resource has been created.→202AcceptedThe request has been accepted but not yet acted upon.→203Non-Authoritative InformationThe response is from a transforming proxy, not the origin server.→204No ContentThe server successfully processed the request but returns no content.→
ad · 300×250
// related tools