An instruction that automatically sends users (and crawlers) from one URL to another. 301 redirects are permanent and pass SEO equity; 302 are temporary.
When Reload Mode migrates a client's WordPress site to Webflow, all old URLs get 301 redirects to the new URL structure, preserving SEO rankings.
Each unnecessary redirect adds 100–500ms of latency per hop — and a 5-step redirect chain (A→B→C→D→E) can add over 1.5 seconds of load time before the final page even begins loading, according to Google's PageSpeed guidance on redirect chains.
URL redirect, Page redirect, 301 redirect
301 / 302
URL changes during website migrations, redesigns, content consolidation, or any time a published URL needs to move or be retired.
Redirect 301 /old-page https://yourdomain.com/new-pagelocation = /old-page { return 301 /new-page; }Answer