Skip to content
Book a call
Menu
Services
Search SEOAEO / GEO Paid media Google AdsGPT / AI AdsSocial AdsProgrammaticAmazon AdsYouTube Ads Build & convert Web DevelopmentCROContent Marketing Grow & retain Email MarketingDemand GenerationReputation Management All services
Industries
Home Services · 27 playbooksHealth & Wellness · 21 playbooksLegal · 13 playbooksCannabis · 12 + ultimate guideProfessional Services · 11 playbooksEcommerce & DTC · 15 playbooksFinancial Services · 12 playbooksHospitality · 11 playbooksSenior Care · 10 playbooksEducation & Childcare · 10 playbooksStartups · 11 playbooksReal Estate · 11 playbooksFranchise · 11 playbooks All industries
Pricing
Resources
Ultimate guides Cannabis MarketingHow to Rank in ChatGPTHome Services Marketing Learn & verify BlogGlossaryCompareToolsCase studies All guides
About Are we a fit? Search Book a call
An astronaut rifles through the wooden drawers of a library card catalog under a green banker's lamp surrounded by bookshelves and a globe.
Glossary

What Is a 301 Redirect? The Permanent Move That Keeps Your Rankings

Definition

A 301 redirect is a server response that permanently sends users and search engines from an old URL to a new one. The old URL stops loading and everything routes to the destination. It passes nearly all of a page's link equity and ranking signals to the new URL, which makes it the standard tool for moving, merging, or retiring pages without losing the authority those pages earned.

What is a 301 redirect? It is a server's way of saying "that page lives somewhere else now, permanently." When a browser or a search crawler requests the old URL, the server answers with a 301 status code and the address of the new page, and the request routes there instead. The old URL stops loading, the visitor lands on the new page, and nearly all of the ranking power the old page earned moves with it. It is the cleanest tool for changing a URL without throwing away the years of authority attached to it.

What is a 301 redirect, in plain English?

Every time a browser asks a server for a page, the server replies with a status code. A 200 means "here's the page." A 404 means "that page doesn't exist." A 301 means "that page has permanently moved, here's where it went," and it hands over the new address so the browser can follow it.

The "permanent" part is the whole point. A 301 is a one-way door. Once it's in place, the old URL no longer serves its own content. Users typing the old link, clicking an old bookmark, or following an old backlink all get carried to the new page without doing anything. They often don't even notice the jump.

What makes the 301 matter for search is what happens behind the scenes. When Googlebot recrawls the old URL and sees the 301, it does more than forward the visitor. It transfers the page's accumulated signals (its link equity, its relevance, its ranking history) onto the destination and folds the old URL out of its index. The new page inherits the authority the old one spent years building. That transfer is why a 301 is the default move whenever a URL changes, and why getting it wrong is one of the more expensive mistakes in technical SEO.

How a 301 redirect works

A 301 is an HTTP response. When the request comes in for the old URL, the server returns two things: the status code and a Location header pointing at the new URL.

```
GET /old-page HTTP/1.1
Host: example.com

HTTP/1.1 301 Moved Permanently
Location: https://example.com/new-page
```

The browser reads that Location header and immediately requests the new page. From the user's side it's one smooth jump. From a crawler's side, the 301 is a clear instruction: stop indexing the old URL, consolidate everything onto the new one.

You set redirects up at the server level (an .htaccess file on Apache, a config block on Nginx), through your CMS, through a plugin, or at the CDN edge. Where you implement them matters less than that they return a true 301 status and not a soft redirect faked with JavaScript or a meta refresh, both of which search engines handle slowly and inconsistently.

301 vs 302: the distinction that costs rankings

The single most important thing to get right is permanent versus temporary, because they look identical to a visitor and behave very differently for search.

RedirectMeaningWhat Google doesUse it when
301Permanent moveDrops the old URL from the index, transfers signals to the new URLThe change is permanent: a page moved, merged, or was renamed for good
302Temporary moveKeeps the old URL indexed, treats the new URL as a stand-inThe original will return: A/B tests, short promotions, geo or maintenance pages

The classic, expensive error is using a 302 (or a CMS default that quietly issues 302s) for a permanent change. Because a 302 tells Google to keep the original URL in the index and not fully transfer authority, the new page never inherits the old one's ranking power, and the move silently caps your visibility. If the move is forever, it has to be a 301. This is one of the first things worth checking in any technical SEO audit.

Why 301 redirects matter

A 301 protects the asset most sites underestimate: the authority their URLs have already earned. A page that has ranked for years has collected backlinks, internal links, crawl priority, and a track record with search engines. Change that URL without a redirect and all of it vanishes. The old URL 404s, the backlinks point at a dead page, and the new URL starts from zero as if it were brand new.

Per Google's own documentation, 301 redirects do not cause a loss of PageRank, so a clean redirect carries that hard-won equity forward instead of leaving it stranded on a dead URL. That is the entire reason the redirect exists. It lets you change your URL structure, move to a new domain, or merge two competing pages into one stronger page, all without resetting the clock.

There is a crawl-efficiency angle too. Clean, direct redirects help search engines spend their crawl budget on live pages instead of wasting requests rediscovering moved ones. And the benefit isn't limited to traditional search. AI answer engines crawl and follow redirects the same way Google does, so a tidy redirect map keeps your pages reachable and citable across both classic SERP results and generative answers. Lose the redirect and you lose visibility in both at once.

How to use 301 redirects without breaking things

Most redirect damage comes from a handful of repeatable mistakes. Avoid these and the tool does its job quietly.

  • Redirect to the closest relevant page, not the homepage. A 301 only passes full equity when the destination matches the intent of the old page. Point a retired blue-widget page at your blue-widget category, not at the homepage. Mass-redirecting dead pages to the homepage is treated more like a soft 404, and most of the equity evaporates.
  • Flatten redirect chains. When URL A redirects to B, B to C, and C to D, every hop wastes crawl budget and slows the page. Point each old URL straight at its final destination in one hop. After any migration, audit for chains and loops and collapse them.
  • Map every URL before a migration. A site redesign, replatform, or domain change is where redirects matter most and break most often. Crawl the old site, export every indexed URL, and map each one to its new home before launch, not after the traffic graph drops.
  • Don't redirect through HTTP. Sending users from http:// to http://www to https:// stacks three hops and drags on your Core Web Vitals. Redirect straight to the final HTTPS URL.
  • Keep them in place. Search engines need to recrawl the old URL to process the move, which takes time, and external links keep sending visitors for years. Pull a redirect too early and that traffic and equity are gone. Treat 301s as permanent infrastructure.
  • Use the right tool for the job. If both URLs need to stay live for users, you want a canonical tag, not a redirect. A 301 is for when the old URL should genuinely disappear.

The bottom line

A 301 redirect is plumbing, not strategy, and that's exactly why it gets neglected and exactly why it matters. It never shows up in a marketing deck, but it decides whether a redesign, a domain move, or a URL cleanup keeps your rankings or quietly resets them. Done right, it carries years of earned authority onto a new URL with almost nothing lost. Done wrong (a 302 where a 301 belonged, a chain three hops deep, every dead page dumped on the homepage) it leaks traffic so slowly that nobody connects the drop to its cause until months later.

The fix is not complicated, it is just unglamorous: map every old URL to its closest live equivalent, return a true 301, point it there in one hop, and leave it in place. The sites that treat redirects as permanent infrastructure keep their rankings through changes that wipe out the sites that treat them as an afterthought.

Planning a redesign, a replatform, or a domain change, and want to keep the rankings you've already earned? Our technical SEO work starts with a full redirect map so nothing leaks during the move, and our broader SEO service builds on a foundation that holds. Email us at admin@moonsauceagency.com and you'll get a straight read on your current redirects, the chains and dead ends worth fixing, and what a clean migration plan looks like before you launch.


Keep reading: What is a backlink? · Canonical tag · Technical SEO · Back to the glossary

Sources: Google Search Central documentation · Google Search Central: how Google Search works

Common questions

Frequently asked

What is the difference between a 301 and a 302 redirect?
A 301 is permanent; a 302 is temporary. A 301 tells search engines the old URL is gone for good, so consolidate the indexing and ranking signals onto the new one. A 302 says the move is temporary, so keep the original URL indexed and don't fully transfer authority. The practical rule: if the change is permanent, use a 301. Using a 302 for a permanent move is one of the most common ways sites quietly leak rankings during a redesign.
Does a 301 redirect pass link equity?
Yes, nearly all of it. Google has stated that 301 redirects do not cause a loss of PageRank, so the link equity, relevance, and ranking history of the old URL flow to the destination. The redirect only works cleanly when the new page is closely related to the old one. Redirecting a deleted product page to an unrelated homepage is treated more like a soft 404, and most of that equity evaporates because the content no longer matches.
How long should you keep a 301 redirect in place?
Keep them permanently, or at minimum for at least a year after Google has fully processed the change. Search engines need to recrawl the old URL, see the redirect, and transfer the signals, which can take weeks or months on a large site. External backlinks pointing at the old URL also keep sending visitors for years. Remove the redirect too early and those visitors hit a 404 and that link equity is gone for good.
Are too many 301 redirects bad for SEO?
A large number of clean, direct 301s is fine. The real problem is redirect chains: old URL A redirects to B, which redirects to C, which redirects to D. Each hop wastes crawl budget, slows the page for users, and can dilute the signals that get passed. The fix is to point every old URL straight at its final destination in one hop. Audit your redirects after any big migration and flatten the chains.
What's the difference between a 301 redirect and a canonical tag?
A 301 physically moves a URL: the old one stops loading and everyone goes to the new one. A canonical tag leaves both URLs live and only suggests which one should rank. Use a 301 when a page has genuinely moved or merged and the old URL should disappear. Use a canonical tag when both URLs need to stay reachable for users (filtered, sorted, or parameter versions of the same content) but only one should appear in search.
Do 301 redirects slow down your site?
A single redirect adds a small round trip, usually a few hundred milliseconds, which is rarely noticeable. The damage comes from chains and from redirecting through HTTP before HTTPS. Each extra hop forces another request before the page loads, which hurts your Core Web Vitals on the slowest connections. Keep redirects to one hop and serve HTTPS directly, and the performance cost is negligible.
Does a 301 redirect still matter for SEO in 2026?
Yes, and it is one of the most durable tools in technical SEO. Every site migration, redesign, URL restructure, or domain change depends on 301s to carry forward the rankings and backlinks the old pages earned. AI answer engines crawl and follow redirects the same way traditional search does, so a clean redirect map protects your visibility across both. The mechanics have not changed in years because they still work.
Your move

30 minutes. Let us see if we are a fit.

This is not a canned pitch. We want to hear about your business, your goals, and where you are stuck, then tell you honestly how we would help, or if we are not the right fit. You will talk to a founder, every time. Zero pressure, zero BS.

  • A founder on the call, never a sales rep
  • We learn your business before we pitch anything
  • A straight answer on whether we can help
Free30 minutesNo obligationA reply within a business day
Rob BurkeRoger CooneyRob or Roger. The founders. Every time.
Calendar warming up…Book a strategy call