Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

HTTP headers allow the client and the server to pass additional information with the request or the response. A request header consists of its case-insensitive name followed by a colon ':', then by its value (without line breaks). Leading white space before the value is ignored.

Custom proprietary headers can be added using the 'X-' prefix, but this convention was deprecated in June 2012, because of the inconveniences it caused when non-standard fields became standard in RFC 6648; others are listed in an IANA registry, whose original content was defined in RFC 4229. IANA also maintains a registry of proposed new HTTP message headers.

Headers can be grouped according to their contexts:

  • General header: Headers applying to both requests and responses but with no relation to the data eventually transmitted in the body.
  • Request header: Headers containing more information about the resource to be fetched or about the client itself.
  • Response header: Headers with additional information about the response, like its location or about the server itself (name and version etc.).
  • Entity header: Headers containing more information about the body of the entity, like its content length or its MIME-type.

Headers can also be grouped according to how proxies handle them:

End-to-end headers
These headers must be transmitted to the final recipient of the message; that is, the server for a request or the client for a response. Intermediate proxies must retransmit end-to-end headers unmodified and caches must store them.
Hop-by-hop headers
These headers are meaningful only for a single transport-level connection and must not be retransmitted by proxies or cached. Such headers are: Connection, Keep-Alive, Proxy-Authenticate, Proxy-Authorization, TE, Trailer, Transfer-Encoding and Upgrade. Note that only hop-by-hop headers may be set using the Connection general header.

The following list summaries HTTP headers by their usage category. For an alphabetical list, see the navigation on the left side.

Authentication

WWW-Authenticate
...
Authorization
...
Proxy-Authenticate
...
Proxy-Authorization
...

Caching

Age
The time in seconds the object has been in a proxy cache.
Cache-Control
Specifies directives for caching mechanisms in both, requests and responses.
Expires
The date/time after which the response is considered stale.
Pragma
Implementation-specific header that may have various effects anywhere along the request-response chain. Used for backwards compatibility with HTTP/1.0 caches where the Cache-Control header is not yet present.
Warning
A general warning field containing information about possible problems.

Client hints

Accept-CH
...
Content-DPR
...
DPR
...
Downlink
...
Save-Data
...
Viewport-Width
...
Width
...

Conditionals

Last-Modified
It is a validator, the last modification date of the resource, used to compare several versions of the same resource. It is less accurate than ETag, but easier to calculate in some environments. Conditional requests using If-Modified-Since and If-Unmodified-Since use this value to change the behavior of the request.
ETag
It is a validator, a unique string identifying the version of the resource. Conditional requests using If-Match and If-None-Match use this value to change the behavior of the request.
If-Match
Makes the request conditional and applies the method only if the stored resource matches one of the given ETags.
If-None-Match
Makes the request conditional and applies the method only if the stored resource doesn't match any of the given ETags. This is used to update caches (for safe requests), or to prevent to upload a new resource when one is already existing.
If-Modified-Since
Makes the request conditional and expects the entity to be transmitted only if it has been modified after the given date. This is used to transmit data only when the cache is out of date.
If-Unmodified-Since
Makes the request conditional and expects the entity to be transmitted only if it has not been modified after the given date. This is used to ensure the coherence of a new fragment of a specific range with previous ones, or to implement an optimistic concurrency control system when modifying existing documents.

Connection management

Connection
Controls whether or not the network connection stays open after the current transaction finishes.
Keep-Alive
Controls how long a persistent connection should stay open.

Content negotiation

Accept
Informs the server about the types of data that can be sent back. It is MIME-type.
Accept-Charset
Informs the server about which character set the client is able to understand.
Accept-Encoding
Informs the server about the encoding algorithm, usually a compression algorithm, that can be used on the resource sent back.
Accept-Language
Informs the server about the language the server is expected to send back. This is a hint and is not necessarily under the full control of the user: the server should always pay attention not to override an explicit user choice (like selecting a language in a drop down list).

Content security policy (CSP)

Content-Security-Policy
Controls resources the user agent is allowed to load for a given page.
Content-Security-Policy-Report-Only
...

Controls

Expect
...
Max-Forwards
...

Cookies

Cookie
Contains stored HTTP cookies previously sent by the server with the Set-Cookie header.
Set-Cookie
Send cookies from the server to the user agent.
Cookie2
Used to contain an HTTP cookie, previously sent by the server with the Set-Cookie2 header, but has been obsoleted by the specification. Use Cookie instead.
Set-Cookie2
Used to send cookies from the server to the user agent, but has been obsoleted by the specification. Use Set-Cookie instead.

CORS

Access-Control-Allow-Origin
Indicates whether the response can be shared.
Access-Control-Allow-Credentials
Indicates whether or not the response to the request can be exposed when the credentials flag is true.
Access-Control-Allow-Headers
Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request.
Access-Control-Allow-Methods
Specifies the method or methods allowed when accessing the resource in response to a preflight request.
Access-Control-Expose-Headers
Indicates which headers can be exposed as part of the response by listing their names.
Access-Control-Max-Age
Indicates how long the results of a preflight request can be cached.
Access-Control-Request-Headers
Used when issuing a preflight request to let the server know which HTTP headers will be used when the actual request is made.
Access-Control-Request-Method
Used when issuing a preflight request to let the server know which HTTP method will be used when the actual request is made.
Origin
Indicates where a fetch originates from.

Do Not Track

DNT
...

Downloads

Content-Disposition
Is a response header if the ressource transmitted should be displayed inline (default behavior when the header is not present), or it should be handled like a download and the browser should present a 'Save As' window.

HSTS

Strict-Transport-Security
...

Message body information

Content-Length
indicates the size of the entity-body, in decimal number of octets, sent to the recipient.
Content-Type
Indicates the media type of the resource.
Content-Encoding
Used to specify the compression algorithm.
Content-Language
Describes the language(s) intended for the audience, so that it allows a user to differentiate according to the users' own preferred language.
Content-Location
Indicates an alternate location for the returned data.

Message routing

Via
Added by proxies, both forward and reverse proxies, and can appear in the request headers and the response headers.

Redirects

Location
Indicates the URL to redirect a page to.

Request context

From
Contains an Internet email address for a human user who controls the requesting user agent.
Host
Specifies the domain name of the server (for virtual hosting), and (optionally) the TCP port number on which the server is listening.
Referer
The address of the previous web page from which a link to the currently requested page was followed.
Referrer-Policy
Governs which referrer information sent in the Referer header should be included with requests made.
User-Agent
Contains a characteristic string that allows the network protocol peers to identify the application type, operating system, software vendor or software version of the requesting software user agent. See also the Firefox user agent string reference.

Response context

Allow
...
Server
Contains information about the software used by the origin server to handle the request.

Range requests

Accept-Ranges
Indicates if the server supports range requests and, if so, in which unit the range can be expressed.
Range
...
If-Range
Create a conditional range request that is only fulfilled if the etag or date given in parameter match the remote resource. Used to prevent downloading two ranges from incompatible version of the resource.
Content-Range
...

Server-sent events

Ping-From
...
Ping-To
...
Last-Event-ID
...

Transfer coding

Transfer-Encoding
Specifies the the form of encoding used to safely transfer the entity to the user.
TE
Specifies the transfer encodings the user agent is willing to accept.
Trailer
Allows the sender to include additional fields at the end of chunked message.

WebSockets

Sec-WebSocket-Key
...
Sec-WebSocket-Extensions
...
Sec-WebSocket-Accept
...
Sec-WebSocket-Protocol
...
Sec-WebSocket-Version
...

Other

Date
Contains the date and time at which the message was originated.
Link
...
Retry-After
Indicates how long the user agent should wait before making a follow-up request.
Upgrade
This is a Proposed Internet Standard. To view a comprehensive list of all Official and Proposed Internet Standards with detailed information about each, visit this Internet Standards reference, which is updated daily.  The relevant RFC document for the Upgrade header field standard is RFC 7230, section 6.7.  The standard establishes rules for upgrading or changing to a different protocol on the current client, server, transport protocol connection.  For example, this header standard allows a client to change from HTTP 1.1 to HTTP 2.0, assuming the server decides to acknowledge and implement the Upgrade header field.  Niether party is required to accept the terms specified in the Upgrade header field.  It can be used in both client and server headers.  If the Upgrade header field is specified, then the sender MUST also send the Connection header field with the upgrade option specified.  For details on the Connection header field please see section 6.1 of the aforementioned RFC.
Vary
Determines how to match future request headers to decide whether a cached response can be used rather than requesting a fresh one from the origin server.
X-Frame-Options
Indicates whether or not a browser should be allowed to render a page in a <frame>, <iframe> or <object>.
X-Content-Type-Options
Disables MIME sniffing and forces browser to use the type given in Content-Type.
X-UA-Compatible
...
X-DNS-Prefetch-Control
...
X-Content-Duration
...
X-Requested-With
...

Browser compatibility

Feature Chrome Edge Firefox Internet Explorer Opera Safari Servo
Accept(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Accept-Charset(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Accept-Encoding(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Accept-Language(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Access-Control-Allow-Credentials4123.510124?
Access-Control-Allow-Headers4123.510124?
Access-Control-Allow-Methods4123.510124?
Access-Control-Allow-Origin4123.510124?
Access-Control-Expose-Headers4123.510124?
Access-Control-Max-Age4123.510124?
Access-Control-Request-Headers4123.510124?
Access-Control-Request-Method4123.510124?
Age(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Cache-Control(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Connection(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Encoding(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Disposition(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Language(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Length(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Location(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Type(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Cookie(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Cookie2No supportNo supportNo supportNo supportNo supportNo supportNo support
Date(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
ETag(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Expires(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
From(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Host(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
If-Match(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
If-Modified-Since(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
If-None-Match(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
If-Unmodified-Since(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Keep-Alive(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Last-Modified(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Location(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Origin(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Pragma(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Referer(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Referrer-PolicyNo support1No support50.0No supportNo supportNo supportNo support
Retry-After??No support2????
Server(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Set-Cookie(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)?
Set-Cookie2No supportNo supportNo supportNo supportNo supportNo supportNo support
TE(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Trailer(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Transfer-Encoding(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
User-Agent(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Vary(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Via(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Warning(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
X-Content-Type-Options1.0(Yes)518.013No support(Yes)
X-Frame-Options4.0(Yes)1.9.28.010.504.0(Yes)
Feature Android Chrome for Android Edge Mobile Firefox for Android IE Mobile Opera Mobile Safari Mobile
Accept(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Accept-Charset(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Accept-Encoding(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Accept-Language(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Access-Control-Allow-Credentials2.1(Yes)(Yes)1.0(Yes)123.2
Access-Control-Allow-Headers2.1(Yes)(Yes)1.0(Yes)123.2
Access-Control-Allow-Methods2.1(Yes)(Yes)1.0(Yes)123.2
Access-Control-Allow-Origin2.1(Yes)(Yes)1.0(Yes)123.2
Access-Control-Expose-Headers2.1(Yes)(Yes)1.0(Yes)123.2
Access-Control-Max-Age2.1(Yes)(Yes)1.0(Yes)123.2
Access-Control-Request-Headers2.1(Yes)(Yes)1.0(Yes)123.2
Access-Control-Request-Method2.1(Yes)(Yes)1.0(Yes)123.2
Age(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Cache-Control(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Connection(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Encoding(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Disposition(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Language(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Length(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Location(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Content-Type(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Cookie(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Cookie2No supportNo supportNo supportNo supportNo supportNo supportNo support
Date(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
ETag(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Expires(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
From(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Host(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
If-Match(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
If-Modified-Since(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
If-None-Match(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
If-Unmodified-Since(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Keep-Alive(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Last-Modified(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Location(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Origin(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Pragma(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Referer(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Referrer-PolicyNo supportNo supportNo support50.0No supportNo supportNo support
Retry-After???????
Server(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Set-Cookie(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Set-Cookie2No supportNo supportNo supportNo supportNo supportNo supportNo support
TE(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Trailer(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Transfer-Encoding(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
User-Agent(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Vary(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Via(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
Warning(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)
X-Content-Type-Options(Yes)(Yes)(Yes)51(Yes)(Yes)No support
X-Frame-Options(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)(Yes)

1. See Chromium bug 619228.

2. See Bug 230260.

See also

Document Tags and Contributors

 Last updated by: fscholz,