No. 14d · Docs
Export presets.
Four formats, all hand-droppable into your platform's redirect importer.
Apache .htaccess
One RewriteRule per row, RedirectMatch for wildcard collapses. Drops into .htaccess at the site root or into a Vhost block.
RedirectMatch 301 ^/blog/2014/(.*)$ /journal/$1 Redirect 301 /our-team-page /about/team Redirect 301 /contact-us /contactIIS web.config
Each rule wrapped in a <rule> element under system.webServer/rewrite/rules. Wildcards use matchType="Pattern".
Nginx
Plain rewrite directives, suitable for inclusion in a server block.
rewrite ^/blog/2014/(.*)$ /journal/$1 permanent; rewrite ^/our-team-page$ /about/team permanent;Plain CSV
Two columns: old,new. Universal format that imports into Webflow, Duda, WordPress (Redirection plugin), Squarespace, and most CMSes that support bulk redirect uploads.
Choosing a preset
The export modal lets you pick at download time. Default is Apache .htaccess; the modal remembers your last choice per workspace.