Response
Last-Modified
Indicates the date and time the resource was last modified, used for cache validation.
Syntax
Last-Modified: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT
Example
Last-Modified: Wed, 11 Mar 2026 08:00:00 GMT
Description
Last-Modified indicates when the resource was last changed. Browsers send it via If-Modified-Since for 304 responses.
Works well for static files but has second-level precision limitations.
For more precise validation, use ETag in addition to Last-Modified.
Check if your website sends this header correctly
Check your headers →