Redirect Generator
Generate 301/302 redirect rules for Apache, Nginx, Next.js, and Vercel.
✨ Redirect entries
Entry 1
Platform
RewriteEngine On RewriteRule ^old-page$ /new-page [R=301,L]
Tips
- Use 301 for permanent moves (SEO-friendly), 302 for temporary redirects.
- Apache: place rules in
.htaccessin your site root (withmod_rewriteenabled). - Nginx: add
rewritelines inside the rightserverblock, then reload. - Next.js: merge
redirects()intonext.config.jsornext.config.mjs. - Vercel: merge the
redirectsarray intovercel.json.