SEO

Your Website Lost Rankings After a Redesign: How to Recover

By JustAddContent Team·2026-03-29·11 min read
Your Website Lost Rankings After a Redesign: How to Recover

You invested time and money into a beautiful website redesign. The new site looks fantastic, loads quickly, and your team is proud of it. But within days of launching, your Google rankings plummeted. Pages that used to rank on the first page have vanished. Organic traffic has dropped 30%, 50%, or more.

This is a scenario that plays out far too often, and it is one of the most preventable problems in web development. The good news: in most cases, the rankings can be recovered. This guide will help you identify exactly what went wrong and walk you through the steps to get your search visibility back.

Why Redesigns Cause Ranking Drops

Google ranks specific URLs, not websites as a whole. When you redesign a site, dozens of things can change that disrupt the signals Google uses to rank your pages:

  • URLs change without redirects
  • Content is removed, rewritten, or reorganized
  • Internal linking structure changes
  • Page titles and meta descriptions change
  • Technical SEO elements are lost (schema markup, canonical tags, header hierarchy)
  • Site architecture changes affect how Google crawls your content
  • Page speed changes (sometimes a redesign actually makes the site slower)

Even one of these changes can cause a ranking drop. When multiple changes happen simultaneously (as they typically do during a redesign), the impact can be severe.

Step 1: Diagnose the Damage

Before you can fix the problem, you need to understand its full scope.

Check Google Search Console

This is your most important diagnostic tool.

  1. Go to Performance > Search Results. Compare the period after the redesign launch to the same length period before. Look at total clicks, impressions, average position, and click-through rate.
  2. Identify specific pages that lost rankings. Click on "Pages" and sort by the change in clicks or impressions. Which pages dropped the most?
  3. Check for crawl errors. Go to Pages (Indexing) and look for pages with errors, particularly "Not found (404)" errors. A spike in 404s after launch is a telltale sign of missing redirects.
  4. Check the Coverage report. Look for pages that were previously indexed but are now excluded or have errors.

Check Your Analytics

In Google Analytics, compare organic traffic before and after the redesign:

  • Which landing pages lost the most traffic?
  • Did the bounce rate change significantly?
  • Are there pages with zero traffic that used to receive regular visits?

Run a Crawl

Use a tool like Screaming Frog (free for up to 500 URLs) to crawl your new site. This will reveal:

  • Broken links
  • Missing meta tags
  • Pages with no index tags
  • Orphaned pages (pages with no internal links pointing to them)
  • Redirect chains and loops

Step 2: Fix Missing or Broken Redirects

Missing 301 redirects are the number one cause of post-redesign ranking drops. When a URL changes and there is no redirect, Google treats the old URL as gone and the new URL as a brand new page with no ranking history.

How to Find Missing Redirects

  1. Export your old sitemap (or find a cached version through the Wayback Machine at web.archive.org)
  2. Compare old URLs to new URLs. Every old URL that no longer exists should redirect to its equivalent new URL.
  3. Check 404 errors in Google Search Console. These are pages Google is trying to access that no longer exist.
  4. Test old URLs manually. Type them into your browser and see what happens. They should redirect to the correct new page.

How to Fix It

Create 301 redirects for every old URL that has changed. A 301 redirect tells Google that a page has permanently moved, and it should transfer the ranking authority to the new URL.

In Next.js (configured in next.config.js):

async redirects() {
  return [
    {
      source: '/old-page-url',
      destination: '/new-page-url',
      permanent: true,
    },
  ]
}

In Apache (.htaccess):

Redirect 301 /old-page-url https://yourdomain.com/new-page-url

In Nginx:

rewrite ^/old-page-url$ /new-page-url permanent;

Redirect Best Practices

  • Redirect to the most relevant equivalent page. Do not redirect everything to the homepage. Google treats this as a "soft 404" and may not transfer ranking authority.
  • Avoid redirect chains. If page A redirects to page B, which redirects to page C, consolidate so A redirects directly to C.
  • Keep redirects permanent. Use 301 redirects, not 302 (temporary) redirects.

For a complete redirect strategy, our website migration SEO checklist covers every step of the process.

Step 3: Recover Lost Content

Content removal or significant rewrites are the second most common cause of ranking drops after a redesign.

What to Check

  1. Were any pages removed entirely? If a page that ranked well was deleted during the redesign, its rankings are gone. Recreate it or redirect it to the closest equivalent.
  2. Was content significantly shortened? If a 2,000-word page was condensed to 500 words, Google may no longer consider it comprehensive enough to rank for its target keywords.
  3. Were headings and keyword placement changed? Sometimes a redesign "cleans up" content in ways that inadvertently remove important keywords from headings, titles, and key positions.
  4. Were images and media removed? Rich content with images, videos, and infographics can rank better than text-only pages.

How to Fix It

  1. Restore removed pages. If a page was ranking well, bring it back, even if it does not fit the new design perfectly. Rankings are more valuable than design consistency.
  2. Restore content depth. If pages were shortened, expand them back to their original depth (or better). Use the Wayback Machine to find the original content if needed.
  3. Restore keyword placement. Make sure target keywords appear in page titles, H1 headings, and early in the body content.
  4. Restore internal links. If the old pages linked to each other in ways that helped Google understand your site structure, restore those links.

Step 4: Fix Technical SEO Issues

A redesign can introduce technical problems that hurt your SEO even when the content and URLs are preserved.

Check for Noindex Tags

This is a surprisingly common mistake. During development, it is standard practice to add noindex tags to prevent Google from indexing the staging or development site. If these tags are not removed before launch, Google will dutifully de-index your pages.

Search your site's HTML source code for:

<meta name="robots" content="noindex">

Also check the HTTP headers for X-Robots-Tag: noindex using your browser's developer tools (Network tab).

Check Canonical Tags

Canonical tags tell Google which version of a page is the "official" one. If canonical tags were changed during the redesign (or removed entirely), Google may get confused about which pages to index.

Every page should have a self-referencing canonical tag:

<link rel="canonical" href="https://yourdomain.com/current-page-url">

Check Structured Data

If your old site had schema markup (Article, LocalBusiness, FAQ, etc.) and the new site does not, you may lose rich results in search. Review our guide on technical SEO for small businesses for a complete technical audit checklist.

Check Page Speed

Sometimes a redesign makes a site slower rather than faster. New themes, additional JavaScript, larger images, and new third-party scripts can all add load time. Test your new site's speed with Google PageSpeed Insights and compare it to your pre-redesign benchmarks.

Check Mobile Usability

Google uses mobile-first indexing, meaning it primarily evaluates the mobile version of your site for ranking purposes. Test your new site's mobile usability in Google Search Console under "Mobile Usability."

Step 5: Rebuild Internal Links

The internal linking structure of your website is one of the most important (and most overlooked) SEO factors. A redesign often disrupts this structure.

What to Check

  1. Are important pages still linked from the main navigation?
  2. Do blog posts still link to relevant service pages and other content?
  3. Are there orphaned pages (pages that exist but have no internal links pointing to them)?
  4. Has the link depth changed? Pages that were two clicks from the homepage should not now require five clicks.

How to Fix It

  1. Map your site structure. Create a visual map of how pages connect to each other.
  2. Restore important contextual links. If blog posts used to link to service pages and those links were lost in the redesign, add them back.
  3. Use breadcrumb navigation. Breadcrumbs help both users and Google understand your site hierarchy.
  4. Add related content sections. At the bottom of blog posts and service pages, include links to related content.

Step 6: Resubmit to Google

After making your fixes, proactively tell Google about the changes.

  1. Submit your new sitemap in Google Search Console. If your sitemap URL changed, submit the new one and remove the old one.
  2. Use the URL Inspection tool to request indexing for your most important pages. You can inspect and request indexing for pages individually.
  3. Check the robots.txt file to make sure it is not blocking any important pages or your sitemap.

Step 7: Monitor Recovery

SEO recovery is not instant. Here is what to expect:

Timeline

  • Week 1-2: Google recrawls your redirects and starts processing changes. You may see continued fluctuation.
  • Week 3-4: Redirects begin taking effect. Pages with proper 301s should start recovering their positions.
  • Month 2-3: Most pages should recover their rankings if the fixes are correct. Some pages may settle at slightly different positions.
  • Month 3-6: Full recovery, assuming all issues have been addressed. Some highly competitive keywords may take longer.

What to Monitor

  • Weekly: Check Google Search Console for crawl errors, indexing issues, and ranking changes
  • Biweekly: Compare organic traffic trends in analytics
  • Monthly: Run a full site crawl to catch any new technical issues

How to Prevent This Next Time

If you are planning a future redesign (or advising someone who is), here is how to avoid ranking disasters. For a comprehensive pre-launch checklist, review our website redesign SEO checklist.

Before the Redesign

  1. Document everything. Export your current sitemap, list all URLs, record current rankings, and note your internal linking structure.
  2. Create a URL mapping document. For every old URL that will change, define the new URL and plan the redirect.
  3. Benchmark your current performance. Record organic traffic, top-ranking pages, top keywords, and Core Web Vitals scores.
  4. Plan content migration carefully. Decide what content stays, what gets updated, and what gets removed. If a page ranks well, think twice before removing it.

During the Redesign

  1. Keep URLs the same wherever possible. The best redirect is no redirect at all.
  2. Preserve page titles and meta descriptions for pages that rank well.
  3. Maintain content depth and quality. Do not sacrifice content for design.
  4. Implement redirects before launch. Have your redirect map ready to go live simultaneously with the new site.

At Launch

  1. Test every redirect. Manually verify that all redirects work correctly.
  2. Remove noindex tags and any staging-environment configurations.
  3. Submit the new sitemap to Google Search Console immediately.
  4. Monitor closely for the first two weeks, checking for crawl errors daily.

After Launch

  1. Fix issues immediately. The faster you address crawl errors and missing redirects, the less impact they will have on your rankings.
  2. Do not make additional major changes. Give Google time to process the redesign before making further modifications.
  3. Be patient. Some ranking fluctuation is normal after a redesign. Do not panic and make hasty changes that could cause additional problems.

Before and After: What Recovery Looks Like

Typical recovery patterns after fixing redesign-related SEO issues follow a recognizable curve. Rankings initially drop sharply, then gradually recover over 4-8 weeks as redirects take effect and Google reprocesses your pages. Some pages may recover faster than others, and a few may settle at slightly different positions than before.

The key takeaway: most ranking losses from redesigns are recoverable if you act quickly and systematically. The longer broken redirects and missing content remain unfixed, the harder recovery becomes. If you discover a post-redesign ranking drop, start working through this guide today. For inspiration on redesigns done right, see our collection of before and after website redesigns for small businesses.

Get weekly small business tips

Practical guides, tool reviews, and actionable advice delivered to your inbox every week. No spam, unsubscribe anytime.