lightmy.day

Redirection

HTTP 304: Not Modified

HTTP 304 means the cached resource is still valid.

Meaning

The server is telling the client to reuse its cached copy.

Common causes

Conditional requests with If-None-Match or If-Modified-Since can return 304.

What to check

Check ETag, Last-Modified, Cache-Control, and stale cache behavior.

Example response

HTTP/1.1 304 Not Modified

References

Related HTTP status codes

Nearby codes often answer the next debugging question.