What is Redirect Map Converter?
A redirect map is a list of URL redirects 閳ユ攼ld URL, new URL, HTTP status code 閳ユ敄hat tells your web server or hosting platform to send visitors from the old URL to the new one. Different platforms use different formats, from simple space-delimited files (Netlify _redirects) to JSON arrays (Vercel) to Apache/Nginx server config syntax. This tool converts a single CSV map to all major platform formats.
quickAnswer
Convert a CSV redirect map (old_url,new_url,status) to your platform's redirect format. Supports Netlify _redirects and netlify.toml, Vercel vercel.json, Apache .htaccess, and Nginx rewrite rules. Validate duplicates and redirect chains before deploying.
Last updated: 2026-05-28
limitations
- Different platforms handle redirect edge cases differently 閳ユ敄railing slashes, query string forwarding, and wildcard matching vary. Test redirects on the actual platform after conversion.
- Very large redirect maps (10,000+ entries) may need to be split or converted to pattern-based rules for performance. This tool generates one entry per redirect.
- Apache and Nginx formats assume basic server configuration. Complex setups with virtual hosts, location blocks, or conditional rewrites may need manual adjustment.
Sources:MDN Web Docs · W3C Specifications · jquery.app on GitHub
How to use this tool
- Enter your redirect mappings in CSV format: old_url,new_url,status (status defaults to 301 if omitted).
- Select the target platform format.
- Enable validation to detect duplicate source URLs and potential redirect chains.
- Copy the generated redirect configuration for your chosen platform.
What you can use it for
- Migrate a WordPress site to a static site and convert the old URL structure to new static URLs.
- Convert an Apache .htaccess redirect file to Netlify _redirects format for a platform migration.
- Check a redirect map for loops and duplicate entries before deploying to production.