---
title: "410 Gone"
canonical: "https://lemwatch.com/http-status-codes/410"
category: "client-error"
last_verified: "2026-08-11"
source: "https://lemwatch.com"
---

# HTTP 410 Gone

**TL;DR** — A 410 means "permanently deleted, never coming back" — the explicit version of 404. Google deindexes 410 pages faster than 404s, which is what you usually want when removing content. Use 410 for retired products, deleted blog posts, and discontinued campaign URLs. Use 301 instead if the content moved to a new URL.

## What it means

HTTP 410 Gone is the deliberate, explicit version of 404. Where 404 means "I can't find this right now," 410 means "this used to exist and is gone forever — stop asking." Search engines treat the distinction seriously: Google deindexes 410 pages within days, while 404 pages can linger in the index for weeks as Google verifies the absence is permanent. Use 410 for content you have deliberately deleted with no replacement: discontinued products, retired API endpoints, deleted blog posts, expired campaign pages. Use 404 only when you genuinely don't know if the URL will be valid in the future.

## Common causes

- Blog post or page deliberately deleted with no replacement
- Discontinued product on an e-commerce site
- Retired API endpoint after a deprecation period
- Expired marketing campaign or seasonal landing page
- User profile or post deleted by GDPR erasure request
- Sensitive content removed for legal/compliance reasons (use 451 if specifically legal)

## How to fix

- If the content moved to a new URL, return 301 to the new URL instead — preserves link equity
- If the content is genuinely gone, return 410 explicitly — Google deindexes faster than 404
- Serve a useful HTML body explaining what was there and pointing to related content — don't serve a blank 410
- Submit the deleted URLs to Google Search Console's URL removal tool for instant deindexing if speed matters
- Update internal links to remove references to the gone URLs
- Don't use 410 for temporary removals — if the content might come back, return 503 with Retry-After instead

## SEO impact

Highly positive when used correctly. Google deindexes 410 pages faster than 404s (days versus weeks), freeing crawl budget for pages that matter and cleaning your search appearance faster after content deletion. Using 410 for content that should not exist in the index is one of the cheapest SEO wins available. Misusing it (returning 410 for content that exists, or 410 for content that should have been redirected) is harmful — affected URLs lose link equity that 301 would have preserved.

## Monitoring tip

LemWatch tracks 410 responses and alerts if a page you didn't intend to delete starts returning 410 — often the sign of a botched migration or a CMS misconfiguration.

**Related:** [301](https://lemwatch.com/http-status-codes/301.md), [404](https://lemwatch.com/http-status-codes/404.md), [451](https://lemwatch.com/http-status-codes/451.md)

_Canonical HTML page: https://lemwatch.com/http-status-codes/410_
