" section.
To automatically redirect visitors from a specific page on your Webflow site to an external webpage, you'll need to embed a redirect script into the page settings.
Scroll down to the Before tag section.
Paste the following inline script (replacing the URL with your target destination):
<script>window.location.href = 'https://www.example.com';</script>
This uses JavaScript to redirect users as soon as the page loads.
If you want a delay before redirecting, modify the script like this:
<script>setTimeout(function(){ window.location.href = 'https://www.example.com'; }, 3000);</script>
This example delays the redirect by 3 seconds (3000 milliseconds).
To redirect a Webflow page to an external site, open that page’s settings and embed a simple JavaScript redirect in the Before section. Publish your site to activate the change.