Webflow sync, pageviews & more.
NEW

Is it possible to redirect a page on my Webflow website to the URL http://krystle_svetlana.dribbble.com, and if so, how can I do it?

TL;DR
  • Create or select a Webflow page, open its settings, and add <script>window.location.href = "http://krystle_svetlana.dribbble.com";</script> in the "Before " custom code field.
  • Publish the site and optionally set a clear slug like /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.

1. Create a New Page or Use an Existing One

  • Navigate to your Webflow project.
  • In the Pages panel, either create a new page or select the page you want to redirect.

2. Add Custom Redirect Code Using Page Settings

  • 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.

3. Publish the Project

  • Click Publish and choose your domain.
  • Visit the redirect page and confirm it takes you to the external Dribbble URL.

4. (Optional) Set Up a Slug for Clarity

  • Rename the page slug to something appropriate like /dribbble so that visiting yourdomain.com/dribbble performs the redirect.

Summary

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.

Rate this answer

Other Webflow Questions