Skip to content
3xx · Redirection

304 Not Modified

The cached version of the resource is still valid, so no body is sent.

What it means

HTTP 304 Not Modified is a caching response. When a client makes a conditional request (using If-Modified-Since or If-None-Match) and the resource has not changed, the server returns 304 with no body, telling the client to use its cached copy.

When it happens

It happens on repeat visits when a browser or crawler revalidates cached assets and the server confirms nothing has changed since the last fetch.

How to fix it

  • Nothing to fix — 304 is efficient, expected caching behaviour.
  • If content changes are not appearing, check your ETag and Last-Modified headers are updating when content changes.

SEO impact

Positive. Correct 304 handling lets crawlers skip unchanged content, saving crawl budget and bandwidth so search engines spend their time on pages that actually changed.

Check it with Sitewell

Find out which of your URLs return 304

Paste a list of URLs and Sitewell checks the status code of every one at once — free and without signup.

Related codes

Related guides