Skip to content
Skip to content
← All HTTP Headers
Caching

Expires

Specifies a date/time after which the response is considered stale. Superseded by Cache-Control max-age.

Syntax

Expires: <http-date>

Example

Expires: Thu, 12 Mar 2027 10:00:00 GMT

Description

Expires specifies an absolute date after which the response is stale. Original HTTP/1.0 caching mechanism.

When both Cache-Control: max-age and Expires are present, Cache-Control takes precedence.

Limitation: requires synchronized clocks. Cache-Control: max-age (relative time) is preferred.

Check if your website sends this header correctly

Check your headers →

Related Articles

Related Headers