HTTP headers | Content-Range Last Updated : 23 Oct, 2019 Comments Improve Suggest changes Like Article Like Report The Content-Range HTTP header is a response header that indicates where a partial message belongs in a full body massage. This header is sent with a partial entity-body to specify where in the full entity-body the partial body should be applied. Syntax: Content-Range: <unit> <range-start>-<range-end>/<size> Content-Range: <unit> <range-start>-<range-end>/* Content-Range: <unit> */<size> Directives: <unit>: This specifies the unit of content range. This value is usually in bytes. <range-start>: An integer that specifies the beginning of the requested range in a given unit. <range-end>: An integer that specifies the ending of the requested range in a given unit. <size>: This specifies the total size of the document. The '*' is used when the value is unknown. Examples: Content-Range: bytes 500-1000/65989 It specifies the unit of the range as bytes and states the range-start as 500 bytes while the range-end as 1000 bytes. The total size of the document is 65989 bytes. Content-Range: bytes 50-1000/* It specifies the unit of the range as bytes and states the range-start as 50 bytes while the range-end as 1000 bytes. The total size of the document is unknown. Supported Browsers The following browsers are compatible with HTTP Content-Range: Google Chrome Internet Explorer Opera Firefox Safari Comment More infoAdvertise with us Next Article HTTP headers | Content-Range H harshcooldude700 Follow Improve Article Tags : Computer Networks HTTP-headers Similar Reads HTTP headers | Content-Language HTTP headers are used to provide additional information in HTTP request and HTTP response. HTTP headers Content-Language is used to define, which language speaker document is intended to. It doesn't define the language of the document. In case this header is not specified, it is assumed that the doc 1 min read Content-Length - HTTP headers HTTP headers are used to transmit additional information in an HTTP request or response. One such important header is the Content-Length header, which is responsible for indicating the size of the entity-body, measured in bytes (octets). This information is used by the recipient to know the exact le 2 min read HTTP headers | Content-Type The Content-Type header is used to indicate the media type of the resource. The media type is a string sent along with the file indicating the format of the file. For example, for image file its media type will be like image/png or image/jpg, etc. In response, it tells about the type of returned con 3 min read HTTP headers | Accept-Ranges The HTTP Accept-Ranges is the Response type header also the part of the ranges system. This header act as a marker that is used by the server to supports the partial request of the clients. The HTTP Accept-Ranges is useful when the client requests any particular portion of a huge file then this head 2 min read HTTP headers | Content-Location The HTTP Content-Location header is an entity-header that gives another location for the data that is returned and also tells how to access the resource by indicating the direct URL. Its usage is often confused with another HTTP Header which is Location. The main difference between them is that Loca 1 min read Like