Request
If-Modified-Since
Makes the request conditional; server responds with 304 if content hasn't changed since the given date.
Syntax
If-Modified-Since: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT
Example
If-Modified-Since: Wed, 26 Mar 2025 07:28:00 GMT
Description
The If-Modified-Since header makes a GET or HEAD request conditional based on a timestamp. If the resource has not been modified since the given date, the server returns 304 Not Modified without a body.
It works alongside Last-Modified response header and is a simpler (but less precise) alternative to If-None-Match / ETag.
Check if your website sends this header correctly
Check your headers →