A Car Sells. What Happens to Its Page?

Every dealer site accumulates dead vehicle pages. Deleting them, redirecting them, or keeping them are three different decisions with three different costs.

Sold car page guiding buyers to similar vehicles

Three options, and most dealer sites pick one by accident rather than on purpose. Delete the page and return a 404 or 410, which Google treats as a strong signal never to crawl that URL again. Redirect it to a category or a similar vehicle, which is the strongest canonicalisation signal there is but becomes a maintenance liability at volume. Or keep the page with a clear sold state and strong routes to comparable stock, which is the only option that captures the buyer who arrived three days late. There's no universally right answer, but there is a wrong one: no policy.

I build inventory platforms, so this is a decision I've had to make in code and then live with. Here's what each option actually does.

Why this is worth ten minutes of your attention

A dealer turning 40 cars a month generates roughly 500 dead URLs a year. At the three-year mark you have an accumulated pile of pages that either don't exist, redirect somewhere, or sit there stale — and whichever it is, it's happening to thousands of URLs without anyone deciding.

There's a revenue angle too. Cox Automotive's 2025 Car Buyer Journey Study found buyers visit an average of 4.6 sites during the process, with 59% using dealership websites. People find a specific vehicle, leave, compare, and come back. If the coming-back lands on a dead end, you've spent the acquisition cost and thrown away the return visit.

And there's a compliance angle that makes this more than an SEO question: advertising unavailable or nonexistent vehicles appears by name on the FTC's list of illegal pricing practices in the warning letters it sent to 97 auto groups in March 2026. Whatever you do with the page, it must not continue to advertise a car you can't sell. That's covered in the price display article.

Option 1: delete it (404 or 410)

Google's crawl budget documentation is direct about the effect: return a 404 or 410 for permanently removed pages, because Google won't forget a URL it knows about, but a 404 is a strong signal not to crawl that URL again.

What you gain. Crawl efficiency and honesty. The page is gone because the car is gone.

What you lose. Whatever ranking signals that URL had accumulated. And you hand a returning visitor an error page instead of an opportunity.

The trap. Soft 404s. If you delete the vehicle but serve a page that returns HTTP 200 while saying "this vehicle is no longer available," Google may classify it as a soft 404 — and Google's guidance is explicit that soft 404 pages continue to be crawled and waste budget. You get the worst of both: no ranking value and continued crawl cost. Check the Page Indexing report in Search Console for soft 404 errors; that's the recommended diagnostic.

A related note from the same documentation: don't try to solve this with robots.txt. Blocking a URL prevents crawling but leaves it in the crawl queue much longer, to be recrawled when the block lifts — and Google may still index disallowed URLs without their content. Blocking is not removing.

Option 2: redirect it

Google lists redirects as the strongest of the canonicalisation signals, above rel="canonical" annotations and well above sitemap inclusion, and recommends using them specifically when you want to get rid of existing duplicate pages. For the quickest effect, server-side HTTP redirects.

What you gain. The returning visitor lands somewhere useful, and signals consolidate rather than evaporate.

What you lose. Precision, and eventually your sanity at volume. A redirect to a generic inventory page is a poor experience — the visitor wanted a specific silver estate, not your homepage. A redirect to a genuinely similar vehicle is much better, and much harder to automate well.

The traps. Google's crawl budget guidance warns to avoid long redirect chains because they have a negative effect on crawling, and at dealer volumes chains form on their own: car A redirects to car B, B sells and redirects to C, C sells and redirects to D. If you redirect, resolve chains to a single hop. Also avoid mixed signals — Google's canonicalisation guidance says not to specify different URLs as canonical for the same page using different techniques, so don't put a sitemap URL and a rel="canonical" in disagreement.

Option 3: keep the page, marked sold

The page stays at its URL, returns 200, clearly states the vehicle is sold, and offers strong links to comparable stock in the same body style, price band and mileage range.

What you gain. The late-arriving buyer gets a real next step. On used inventory that's often the highest-intent visitor you'll see that day — they already chose the car.

What you lose. Nothing automatically, but only if the page carries genuine value. A stale VDP with a sold badge and no route onwards is a soft 404 with extra steps, and Google will treat it accordingly.

How to do it properly. Make the sold state unmissable, remove all pricing and enquiry-to-buy calls to action so the page isn't advertising an unavailable vehicle, and put three to six real alternatives on the page generated from live inventory rather than a static "browse our stock" link. Update the structured data so the availability reflects reality — stale markup is the "schema drift" problem, which automotive marketing firm Demand Local identifies as the most common real-world issue with automotive schema.

What I'd actually do, by dealer size

Under about 50 vehicles a month: keep pages with a sold state for 60 to 90 days, then 410 them. Your VDPs earn real organic traffic at that scale and the late-buyer capture is worth more than the crawl cost.

Above that: the maintenance economics shift. A short sold-state window followed by a clean 410, plus rigorous sitemap hygiene, is easier to keep correct than thousands of redirects. Google's crawl budget guidance emphasises keeping sitemaps up to date and including lastmod, and notes that a large share of URLs sitting in "Discovered — currently not indexed" is one of the signals that crawl budget deserves attention.

One more thing from that documentation that's easy to miss and applies to everyone: crawl capacity responds to site health. If response times stay stable or improve, the limit goes up; if the site slows down or returns 5xx or 429 responses, Google crawls less. So page speed isn't only a ranking and conversion issue — it's also how much of your inventory gets crawled at all.

Here is the policy in concrete terms. When a vehicle is marked sold, its page keeps returning 200 for the sold-state window, shows an unmissable sold banner with no price or buy-intent calls to action, and lists three to six alternatives pulled from live inventory by body style, price band and mileage range. The structured data flips to unavailable at the same moment. When the window ends, the URL returns 410 and drops out of the sitemap, and the sitemap is regenerated on every inventory import so it never lists a car you can't sell.

To check that it's working, watch three things in Search Console: the soft 404 count in the Page Indexing report, the share of URLs sitting in "Discovered — currently not indexed", and any enquiries that start on a sold-state page and finish on a different vehicle. That last one is the number that justifies option 3.

What this means for your dealership

Find a car you sold two months ago and try to load its page. Whatever happens — error, redirect, stale listing — is your current policy, and someone should have chosen it deliberately. Then check the Page Indexing report in Search Console for soft 404s, because that number tells you whether your "no longer available" pages are quietly burning crawl budget.

Then ask your vendor the single question: when a vehicle sells, what HTTP status does its URL return, and for how long? It's a one-sentence answer and very few dealers have ever asked for it.

Where I'd tell you not to hire me

If your VDPs get almost no organic traffic — which is common for dealers whose volume comes from marketplaces and paid social — this is not where your money should go. Check Search Console first: if vehicle pages aren't earning impressions, optimising their afterlife is rearranging furniture. Fix the inventory plumbing and your photography instead.

Sources

  • Google Search Central, Optimize your crawl budget (updated 22 July 2026) — 404/410 as a strong signal not to recrawl, soft 404s wasting budget, robots.txt blocking keeping URLs queued, redirect chains, sitemap lastmod, crawl capacity responding to site health, "Discovered — currently not indexed."
  • Google Search Central, How to specify a canonical URL — relative strength of redirects, rel="canonical" and sitemaps; warning against conflicting canonical signals; server-side redirects for speed.
  • FTC, Template Auto Warning Letter (13 March 2026) — advertising unavailable or nonexistent vehicles.
  • Cox Automotive, Car Buyer Journey Study (13 Jan 2026) — 4.6 sites visited on average, 59% dealership website usage.
  • Demand Local, Automotive Schema Markup — schema drift.

Send me a URL from a car you've sold and I'll tell you what it's currently doing.

← All articles Next article →
Let's Work Together

Your competitors
have a website.
You'll have an edge.

Tell me about your dealership and get a free demo of what's possible. No pressure, no obligation.

Contact Us