Yes, Webflow allows you to implement page redirects through both its Project Settings and custom code options, depending on your needs.
/old-page
)./new-page
).<meta http-equiv="refresh" content="0; url=/new-page">
tag section using:window.location.href = "/new-page";
Webflow supports 301 page redirects directly under Project Settings > Hosting, allowing you to map old URLs to new ones with SEO-friendly results. For more complex cases, you can use meta tags or JavaScript, but these methods should be used sparingly.