files/en-us/web/http/reference/headers/last-modified/index.md
The HTTP Last-Modified {{glossary("response header")}} contains a date and time when the origin server believes the resource was last modified.
It is used as a validator in conditional requests ({{HTTPHeader("If-Modified-Since")}} or {{HTTPHeader("If-Unmodified-Since")}}) to determine if a requested resource is the same as one already stored by the client.
It is less accurate than an {{HTTPHeader("ETag")}} for determining file contents, but can be used as a fallback mechanism if ETags are unavailable.
Last-Modified is also used by crawlers to adjust crawl frequency, by browsers in heuristic caching, and by content management systems (CMS) to display the time the content was last modified.
Last-Modified: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT
<day-name>
<day>
<month>
<year>
<hour>
<minute>
<second>
Last-Modified: Wed, 21 Oct 2015 07:28:00 GMT
{{Specifications}}
{{Compat}}