301 redirect generator
Old URLs to new ones, as Apache, Nginx or Next.js rules. Free and no account. Nothing leaves your browser.
3 redirects. Separate with a comma or a tab, so two columns pasted straight out of a spreadsheet work. Full URLs are reduced to paths.
Server
.htaccess
# 301 redirects. Place in .htaccess at the document root. <IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^old-page/?$ /new-page [R=301,L] RewriteRule ^blog/2019/thing/?$ /blog/thing [R=301,L] RewriteRule ^legacy/?$ / [R=301,L] </IfModule>
301 is permanent and is what passes ranking signals. Browsers cache it hard, so test on a staging host or in a private window — getting a 301 wrong and then fixing it does not clear it from anyone who already followed it.
What it tells you
Three server formats
Apache .htaccess, Nginx, or a Next.js redirects() block.
Finds redirect chains
A to B where B also redirects. Chains dilute signals and Google stops following after a handful.
Finds loops and self-redirects
Both make the page permanently unreachable, and both come from spreadsheet copy-paste.
Takes spreadsheet output
Comma, tab or multi-space separated, with full URLs reduced to paths automatically.
How to use it
- 1Paste old and new URLsTwo columns, straight out of the migration spreadsheet.
- 2Read the warningsChains and loops are listed before you generate anything. Fix them in the source list, not in the rules.
- 3Pick your server and deployTest on staging first — browsers cache a 301 aggressively, and a wrong one is hard to take back.
Questions people ask
301 or 302?
301 for a permanent move, which is what a migration is, and what passes ranking signals to the new URL. 302 says the original will return, so signals stay with the old URL. Using 302 for a permanent move is a common and expensive mistake.
Why do redirect chains matter?
Each hop loses a little and adds latency, and Google gives up following after roughly five. More practically, chains accumulate: a site on its third redesign often has URLs going through four hops to reach a live page. Always point the oldest URL directly at the final destination.
Should I redirect everything to the homepage?
No. A bulk redirect to the homepage is treated as a soft 404 and passes nothing. Map each URL to its closest equivalent; if there genuinely is not one, let it 410 or 404 honestly.
How long do I keep redirects?
At least a year, and indefinitely if the old URLs still have links pointing at them. Removing a redirect breaks every external link that ever pointed there, which is the value you were trying to preserve in the first place.
Other free tools
Word counter
Words, characters, sentences, paragraphs and reading time, as you type.
Readability checker
Flesch reading ease and grade level, with the sentences dragging you down.
Keyword density analyzer
Which terms you actually used, and how often, including two and three word phrases.
SERP preview
How your title and meta description will truncate in Google, in pixels.
Character counter
Live character count against the limits for every field that has one.
Headline checker
Scores a headline on length, structure and the words that make people click.
Image resizer
Resize and compress an image without it ever leaving your machine.
Permalink generator
A clean, lowercase, ASCII URL slug from any headline.
robots.txt generator
A valid robots.txt, with the AI crawlers listed explicitly.
UTM link builder
Tagged campaign links, with the casing normalised so reports do not split.
Title case converter
AP, Chicago, APA or sentence case, because they genuinely disagree.
Schema markup generator
Valid JSON-LD for FAQ, Article, Product and Organization.
llms.txt generator
The file that tells assistants what your site is and which pages matter.
Meta tag generator
Title, description, canonical and the social tags, in one block.
XML sitemap generator
Paste your URLs, get a valid sitemap.xml.
Hreflang tag generator
Language and region tags that point at each other properly.
Keyword mixer
Combine lists into every permutation, deduplicated.
AI answer readiness
Whether a page is shaped to be quoted in an AI answer.
AI meta description writer
Three descriptions at the right length, from what the page actually covers.
AI FAQ generator
The questions people actually type, with answers short enough to be quoted.
AI keyword intent classifier
What each keyword wants, and the one page type that should target it.
Want a tool like this on your own domain?
This page is the argument for the offer. A small useful utility gets embedded and linked, and every embed is a link back. kiterank builds one for your audience and hosts it on your domain, so the links accrue to you rather than to us.