<script>window.location.href = "http://krystle_svetlana.dribbble.com";</script>
in the "Before " custom code field.
/dribbble
for the redirect page.Yes, you can redirect a Webflow page to an external URL like http://krystle_svetlana.dribbble.com
using a simple method. Webflow does not offer native server-side redirects to external URLs, but you can achieve this with a custom code embed.
Click the gear icon next to the page to open Page Settings.
Scroll to the Before tag section under Custom Code.
Add this redirect code:
<script>window.location.href = "http://krystle_svetlana.dribbble.com";</script>
This script will redirect the user as soon as the page loads.
/dribbble
so that visiting yourdomain.com/dribbble
performs the redirect.To redirect to http://krystle_svetlana.dribbble.com
, add a simple JavaScript window.location.href
script in the page’s custom code section. This client-side redirect works reliably across modern browsers.