リダイレクトマップコンバーターとは
A redirect map is a list of URL redirects — old URL, new URL, HTTP status code — that 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.
クイックアンサー
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.
制限事項
- Different platforms handle redirect edge cases differently — trailing 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.
使い方
- 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.
主な用途
- 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.