410 Gone

HTTP Status CodesClient (410)rarerStatus Code: 410Last updated: todayTested on:Google ChromeNode.js v20 LTSJune 2026

The resource is permanently gone.

410 Gone Quick Fix⏱️ Est. Fix Time: 3 minutes

Usually happens because:

  • Resource was deleted intentionally.
  • Promotional or temporary pages expired.
  • Database records purged permanently.

🔍 Quick Checklist:

Meaning

The HTTP 410 Gone response status code indicates that access to the target resource is no longer available at the origin server and that this condition is likely to be permanent.

Root Causes

  • Resource was deleted intentionally.
  • Promotional or temporary pages expired.
  • Database records purged permanently.
CauseFrequency
Resource was deleted intentionally.⭐⭐⭐⭐⭐
Promotional or temporary pages expired.⭐⭐⭐⭐
Database records purged permanently.⭐⭐⭐

Common Mistakes

  • Using 404 Not Found instead of 410 Gone for resources that were intentionally deleted.
  • Keeping active backlinks to 410 pages on the site indexing tree.

How to Fix

1Remove links pointing to the expired resource.
2Configure search engines to drop the index immediately.
3Use redirects if a newer version exists.

Framework-Specific Examples

Express router returning 410 for expired endpoints.

Express Example
app.get('/old-campaign', (req, res) => {
  res.status(410).send('This promotion has ended');
});

Server Configuration Examples

Returning 410 immediately for static paths.

Nginx Config
location /old-page { return 410; }

Prevention

  • Implement routing patterns that automatically flag expired campaigns or pages with 410 Gone.
  • Maintain active redirects where possible.

Frequently Asked Questions (FAQ)

Q: Does Googlebot treat 404 and 410 differently?

Yes. Googlebot removes a 410 page from its search indexes immediately, whereas a 404 page is checked multiple times over several days before being removed, to safeguard against accidental errors.

Q: When is 410 preferred over 404?

Use 410 for intentionally and permanently deleted endpoints, such as one-time secure links, deleted accounts, or expired promotional landing pages.

Q: Should a 410 page trigger redirects?

It depends. If a direct successor page exists, redirecting via 301 is better. Otherwise, returning 410 is correct to purge the index.

Q: How do crawlers handle 410 caching?

Crawlers cache the 'gone' status eagerly, meaning search bots will stop visiting that URL much sooner than a 404 URL.

Still having this problem?

Didn't solve your problem?

SuggestRequest Error