All Tools
Redirect Map Builder
Build 301/302 redirect rules and export them in multiple formats. Supports Vercel, Netlify, nginx, Apache .htaccess, and Cloudflare Workers formats.
Add Redirect
Redirects (1)
301/old-page→/new-page
Output Format
Generated Config
{
"redirects": [
{
"source": "/old-page",
"destination": "/new-page",
"statusCode": 301
}
]
}Redirect Best Practices
- 301 (Permanent): Use when a page has moved permanently. Search engines transfer SEO value to the new URL. Best for domain migrations, URL restructures, and permanent content moves.
- 302 (Temporary): Use for short-term redirects like A/B tests, maintenance pages, or seasonal promotions. Search engines keep the original URL indexed.
- 307 (Temporary Redirect): Like 302 but guarantees the HTTP method is preserved. Preferred for API redirects and POST requests.
- 308 (Permanent Redirect): Like 301 but preserves the HTTP method. Use for permanent API endpoint changes.
- Avoid chains: Never redirect A → B → C. Always point directly from A → C to minimize latency and preserve link equity.
- Audit regularly: Review redirects periodically. Remove unnecessary ones and fix any broken chains.
Features
- 301 and 302 redirects
- Vercel format
- Netlify _redirects
- nginx config
- Apache .htaccess
- Bulk import/export
SEO Tips
- Keep title tags under 60 characters
- Meta descriptions should be 150-160 characters
- Include your primary keyword naturally
- Make each page's meta unique