The Full Guide To Managing Your Redirects With WordPress

You’ve moved a page. You’ve changed your domain. You’ve switched from HTTP to HTTPS. Now you need to tell search engines and users where everything went.

That’s what a 301 redirect does.

It’s one of the most fundamental tools in SEO. Used correctly, it preserves your rankings and traffic. Used incorrectly, it can destroy both.

This guide covers everything you need to know: what 301 redirects are, how to implement them, how they affect SEO, how to fix common issues, and how to use them to boost organic traffic.

Table of Contents

  1. What Is a 301 Redirect?
  2. How to Implement 301 Redirects (Server & WordPress)
  3. How 301 Redirects Affect SEO
  4. Common 301 Redirect Issues (And How to Fix Them)
  5. How to Use 301 Redirects to Boost Organic Traffic

1. What Is a 301 Redirect?

301 redirect is a permanent redirect from one URL to another. The “301” refers to the HTTP status code sent by the server.

In plain English: “This page has moved permanently. Here’s the new address.”

When a browser or search engine hits a 301 redirect, it automatically sends the user to the new location.

Example: If you visit blog.oldsite.com, you might end up at newsite.com/blog instead. That’s a 301 redirect at work.

301 vs. Other Redirect Types

Redirect TypeStatus CodeWhen to Use
301PermanentPage has moved forever. Passes almost all link equity.
302TemporaryPage is moved temporarily. Does NOT pass full link equity.
Meta refreshN/AClient-side redirect. Not recommended for SEO.
307Temporary (HTTP/1.1)Modern equivalent of 302. Rarely used.

Key rule: Use 301 for permanent moves. Use 302 only for temporary changes (e.g., A/B testing).

2. How to Implement 301 Redirects

You have several options, from server configuration to WordPress plugins.

Option 1: Via .htaccess (Apache Servers)

The .htaccess file lives in your website’s root folder. Add the following code snippets as needed.

Redirect a single page:

Redirect 301 /old-page.html /new-page.html

Redirect an entire domain:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^oldsite.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.oldsite.com [NC]
RewriteRule ^(.*)$ https://newsite.com/$1 [L,R=301,NC]

Redirect HTTP to HTTPS:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Redirect non-www to www:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]

Important: If RewriteEngine on already exists in your file, do not duplicate it.

Option 2: Via Nginx

Add to your server block configuration:

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

For domain redirects:

server {
    server_name oldsite.com;
    return 301 $scheme://newsite.com$request_uri;
}

Option 3: Via WordPress Plugins (Easiest)

The Redirection plugin (free) lets you manage 301 redirects from your WordPress dashboard without touching server files.

  • Install → Activate → Add new redirect
  • Source URL → Target URL → Save

Option 4: Via functions.php (Conditional Redirects)

For advanced logic (e.g., redirect logged-out users):

add_action('template_redirect', 'custom_redirect');
function custom_redirect() {
    if (!is_user_logged_in() && is_page('old-page')) {
        wp_redirect('https://yoursite.com/new-page', 301);
        exit;
    }
}

3. How 301 Redirects Affect SEO

The Short Answer: No More PageRank Loss

Before 2016, 301 redirects caused a small loss of PageRank (link equity), estimated around 15% per redirect. A chain of redirects could lose 30–40%.

That is no longer true.

In 2016, Google confirmed that 301 redirects no longer lose PageRank. A redirected page retains virtually all the “authority” of the original.

“30x redirects don’t lose PageRank anymore.” Gary Illyes, Google

This means:

  • A single 301 redirect passes almost full link equity.
  • Redirect chains are still bad for user experience, but they no longer leak significant PageRank.

What Still Matters

FactorImpact
RelevanceRedirecting to an irrelevant page = Google may treat it as a soft 404
SpeedMultiple redirects slow down page load time
Crawl efficiencyRedirect chains waste crawl budget
User experienceUsers clicking redirect chains wait longer

301 vs. Canonical Tags

Some SEOs ask: should I use a 301 redirect or a canonical tag?

Use 301 redirect when…Use canonical tag when…
You want all traffic to go to one URLMultiple URLs must remain accessible
You’re permanently moving contentYou have duplicate content (e.g., print versions)
You want to consolidate link equityYou can’t redirect (e.g., ecommerce filters)

4. Common 301 Redirect Issues (And How to Fix Them)

Issue 1: HTTP to HTTPS Missing

Problem: Your site loads over HTTP, not HTTPS. Or both versions work separately.

Why it’s bad: Google uses HTTPS as a ranking signal. Users see “Not secure” warnings.

How to fix:

  • Install an SSL certificate (free via Let’s Encrypt).
  • Add HTTP → HTTPS redirect in .htaccess or Nginx.
  • Test: manually type http://yoursite.com → you should land on https://

Issue 2: Redirect Chains

Problem: Page A → Page B → Page C → Page D (three or more redirects).

Why it’s bad: Slows down page load. Wastes crawl budget.

How to fix:

  • Replace the chain with a single redirect: Page A → Page D.
  • Update internal links to point directly to the final URL.

How to find them: Use Ahrefs Site Audit → “Redirect chain” errors.

Issue 3: Redirect Loops

Problem: Page A → Page B → Page A → Page B (infinite loop).

Why it’s bad: Browser gives up and shows “Too many redirects.” Page becomes inaccessible.

How to fix:

  • If the URL shouldn’t redirect → change status code to 200.
  • If it should redirect → fix the destination URL to remove the loop.

Issue 4: Broken Redirects

Problem: Page A (301) → Page B (404).

Why it’s bad: Users and search engines hit a dead end. Link equity is wasted.

How to fix:

  • Reinstate the dead page (if accidentally deleted).
  • Redirect to a different, relevant page.
  • Remove internal links to the broken redirect.

Issue 5: Redirected Pages Still in Sitemap

Problem: Your sitemap contains URLs that return 301 status codes.

Why it’s bad: Google wastes crawl budget revisiting pages that don’t exist.

How to fix:

  • Remove all 301 URLs from your sitemap.
  • Resubmit the sitemap via Google Search Console.

Issue 6: Redirected Pages Still Getting Organic Traffic

Problem: A 301 page appears in Google Search Console with clicks/impressions.

Why it happens: Google hasn’t yet crawled and processed the redirect.

How to fix (if recent): Nothing, Google will catch it on the next crawl.

How to fix (if persistent):

  • Use Google Search Console URL Inspection → “Request Indexing.”
  • Remove the URL from your sitemap.

Issue 7: 302 or Meta Refresh Used Instead of 301

Problem: You used a 302 (temporary) redirect for a permanent move.

Why it’s bad: Google may not transfer link equity. The old page may stay in the index.

How to fix:

  • Replace with a 301 redirect.
  • If the redirect was temporary and no longer needed, remove it entirely.

5. How to Use 301 Redirects to Boost Organic Traffic

Beyond fixing issues, 301 redirects can be a growth strategy. Here are two powerful methods.

Method 1: The Cocktail Technique (Merge Related Pages)

Concept: Combine two or more topically similar pages into one stronger page, then 301 redirect the old pages to the new one.

Why it works:

  • Consolidates link equity from multiple pages into one.
  • Creates a more comprehensive, valuable resource.
  • Eliminates keyword cannibalization.

Example from Ahrefs: Two articles on the Skyscraper Technique were merged into one guide. After redirecting, the new page saw a significant traffic increase.

Step-by-step:

  1. Find keyword cannibalization opportunities – Look for multiple pages targeting the same keyword, especially those with backlinks.
  2. Choose the best URL – Either reuse one existing URL or create a brand new one.
  3. Rewrite and merge content – Take the best from each page. Improve it. Better serve search intent.
  4. 301 redirect old URLs – Redirect every old page to the new consolidated page.
  5. Update internal links – Point internal links directly to the new URL, not through redirects.

When to use this: You have two similar posts, both with some backlinks and traffic, but neither performs as well as the top-ranking result.

Method 2: The Merger Method (Buy and Redirect a Site)

Concept: Acquire another website in your niche, then redirect its content to your site on a page-by-page basis.

Why it works: You inherit the acquired site’s backlink profile and traffic potential.

Example: Backlinko bought Point Blank SEO and redirected individual posts to relevant pages on Backlinko. Result: ~116% traffic increase in 12 months.

Step-by-step:

  1. Buy a relevant website – Ideally one with quality content and backlinks.
  2. Re-home valuable content – Move high-traffic, relevant posts to your domain. Update and improve them. Redirect the old URLs to the new locations.
  3. Delete and redirect less valuable content – For posts with little traffic or duplicate topics, redirect to your most relevant existing page.
  4. Redirect everything else to your homepage – Only as a last resort. Google may treat irrelevant homepage redirects as soft 404s.
  5. Check backlink quality first – Do not redirect pages with spammy backlinks. Delete them instead (or disavow before redirecting).

Warning: Do not simply redirect every page to your homepage. Google may ignore or penalize this. Redirect on a page-by-page basis to relevant, topically similar content.

Final Thoughts

301 redirects are not complicated. But using them well requires attention to detail, regular audits, and a strategic mindset.

Remember:

  • 301s no longer lose PageRank. That’s a huge opportunity.
  • But relevance still matters. Redirect to similar, useful content.
  • Redirect chains, loops, and broken redirects hurt user experience and crawl efficiency.
  • The Cocktail Technique and Merger Method are legitimate, proven growth strategies.

Audit your redirects today. Fix what’s broken. Then look for opportunities to consolidate and grow.

Was this post helpful?
Buy us a coffee!