惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
B
Blog RSS Feed
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 司徒正美
D
Docker
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
H
Help Net Security
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
博客园 - Franky
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How To Use Python For SEO Redirect Mapping
NAD14 · 2026-05-16 · via DEV Community

Website migrations often lead to broken links and ranking losses if redirects are not mapped correctly. Python makes this process faster and more accurate by automating URL matching using page titles, headings and fuzzy matching.

Instead of manually mapping hundreds or thousands of URLs, you can use Python to compare old and new site crawl data and generate redirect recommendations in minutes. This is especially useful during SEO website migrations, where preserving rankings, traffic and user experience is critical.

Why Use Python for Redirect Mapping?
Manual redirect mapping becomes difficult at scale and increases the risk of:

Missed URLs
Incorrect redirects
Redirect chains
Lost SEO equity
404 errors after launch
Python helps automate the process by:

Comparing old and new URLs
Matching pages using titles and headings
Scoring similarity between pages
Exporting redirect recommendations for review
For larger projects, this sits naturally alongside broader technical SEO work, including crawl optimisation, indexation checks and post-launch monitoring.

What You’ll Need
The latest version of Python
VS Code (or alternative code editor)
Screaming Frog (or alternative website crawler)
How To Install Python
Download the latest version of Python from:

Python.org

During installation:

Tick “Add Python to PATH”
Click Install Now
Once installed, restart your terminal or command prompt.

Check that Python is installed correctly
Open Terminal (Mac) or Command Prompt (Windows) and run:

Bash
python --version
You should see something similar to:

Terminal
Python 3.12.3
If that does not work on Windows, try:

Bash
py --version
Create a Project Folder
Create a new folder somewhere easy to access, for example:

File
seo-redirect-mapping
This will be the folder you will place your Screaming Frog crawls in.

Open the Folder in VS Code
Download:

Visual Studio Code

Then:

Open VS Code
Click File → Open Folder
Select your project folder
Create a new Python file called:

File
redirect-mapping.py
You are now ready to install the required libraries and run the script.

Gather Website Crawls
Before starting, gather crawl exports from both the old and new websites using a crawler such as Screaming Frog.

Download:

Screaming Frog

Your exports should include:

URL
Page title
H1
H2
Save both crawl exports as .xlsx files.

Preliminary Steps
Before running the steps below, open the integrated terminal in VS Code by clicking Terminal → New Terminal from the top menu.

This opens a terminal window directly inside your project folder. The pip install command in Step 1 is entered here.

For Steps 2 to 8, paste all of the code blocks into your redirect-mapping.py file in order, then run the script from the terminal using python redirect-mapping.py.

Before installing any libraries, it is recommended to set up a virtual environment. This keeps your project dependencies isolated and avoids conflicts with other Python projects on your machine.

Virtual environment — Mac
Bash
python -m venv venv
source venv/bin/activate
Virtual environment — Windows
Bash
python -m venv venv
venv\Scripts\activate
Once activated, you will see the environment name appear in your terminal. All libraries installed with pip will now be contained within this project folder. To deactivate the environment when you are finished, simply run deactivate as below:

Terminal
deactivate
Make sure the virtual environment is active in your terminal before moving on to Step 1. You will see (venv) at the start of your terminal prompt when it is activated. It should look a little something like this:

Terminal
(venv) your-machine-name:seo-redirect-mapping yourname$
Step-by-Step Guide

  1. Install Required Libraries
    Bash
    pip install pandas polyfuzz rapidfuzz openpyxl
    rapidfuzz is required separately for the matching model import to work correctly.

  2. Import Libraries
    Python
    import pandas as pd
    from polyfuzz import PolyFuzz
    from polyfuzz.models import RapidFuzz

  3. Load Crawl Data
    Python
    old_urls = pd.read_excel("old_site_crawl.xlsx")
    new_urls = pd.read_excel("new_site_crawl.xlsx")

old_urls = old_urls.rename(columns={'Address': 'Old URL', 'Title 1': 'Old Title'})
new_urls = new_urls.rename(columns={'Address': 'New URL', 'Title 1': 'New Title'})
This assumes your Screaming Frog crawl exports use the default column names Address and Title 1, which are renamed in the code for clarity:

Title 1 → renamed to Old Title / New Title
Address → renamed to Old URL / New URL

  1. Prepare Title Data Python old_titles_df = old_urls[['Old URL', 'Old Title']].dropna() new_titles_df = new_urls[['New URL', 'New Title']].dropna()

old_titles = old_titles_df['Old Title'].tolist()
new_titles = new_titles_df['New Title'].tolist()

  1. Run Fuzzy Matching Python matcher = PolyFuzz(RapidFuzz()) matcher.match(old_titles, new_titles)

results = matcher.get_matches()["RapidFuzz"]
The output includes:

Original title
Suggested matching title
Similarity score

  1. Filter High-Confidence Matches
    Python
    filtered_results = results[results["Similarity"] >= 0.90]
    You can lower this threshold for larger or messier migrations, but anything below 0.80 should usually be reviewed manually.

  2. Map Matches Back to URLs
    Python
    redirect_map = filtered_results.merge(
    old_urls[['Old URL', 'Old Title']],
    left_on='From',
    right_on='Old Title'
    )

redirect_map = redirect_map.merge(
new_urls[['New URL', 'New Title']],
left_on='To',
right_on='New Title'
)

final_redirects = redirect_map[
['Old URL', 'New URL', 'Similarity']
].copy()

final_redirects.columns = [
'Old URL',
'New URL',
'Confidence Score'
]

  1. Export the Redirect Map Python final_redirects.to_excel( "redirect_mapping.xlsx", index=False ) You will now have an Excel file containing:

Old URL
Suggested new URL
Match confidence score
Review lower-confidence matches manually before implementation.

Tips for Better Redirect Matching
To improve accuracy:

Match using H1s if titles are inconsistent
Remove duplicate titles before matching
Exclude paginated or parameter URLs
Manually override important pages
Review all low-confidence matches
For important migrations, it is also worth carrying out an SEO audit before launch so technical issues, content gaps and redirect risks are identified early.

Final Thoughts
Python dramatically simplifies redirect mapping during SEO migrations. By automating title and content matching, you can generate scalable redirect recommendations quickly while reducing manual errors.

The workflow above gives you a reliable foundation that works well for most migrations and can easily be expanded for larger, more complex websites.