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
  • Use a 301 redirect in Webflow Project Settings to permanently forward a page to an external URL by adding the old path and full destination link, then publishing the site.
  • Alternatively, add JavaScript in the page’s custom code section to perform a client-side redirect for temporary or dynamic needs (requires a paid Webflow plan).

Yes, you can redirect a page on your Webflow site to an external URL like http://krystle_svetlana.dribbble.com using a 301 redirect or JavaScript, depending on the goal.

1. Using a 301 Redirect in Webflow Page Settings

If you're trying to permanently redirect a Webflow page to an external URL, use this method:

  • Go to Project Settings in Webflow.
  • Click the “Publishing” tab (or “SEO” tab if not visible in Publishing).
  • Scroll down to find the "301 Redirects" section.
  • In the Old Path field, enter the Webflow page path (e.g., /portfolio).
  • In the Redirect to Page field, enter the full external URL: http://krystle_svetlana.dribbble.com.
  • Click “Add Redirect Path” and Publish your site.

Note:

  • This only works on published sites, not in preview mode.
  • The Webflow-hosted domain (e.g., your-site.webflow.io) and custom domains must both be published for the redirect to take effect.

2. Using JavaScript for a Client-Side Redirect

If the redirect needs to be temporary or based on user actions, use JavaScript:

  • Open the page settings of the Webflow page you want to redirect.

  • Scroll down to “Before tag” in the Custom Code section.

  • Add this script:

    window.location.href = "http://krystle_svetlana.dribbble.com";

  • Save the page and Publish your site.

Note:

  • You must be on a paid Webflow site plan to use custom code.
  • This method performs a client-side redirect (not SEO-friendly for permanent moves).

Summary

To redirect a Webflow page to http://krystle_svetlana.dribbble.com, either (1) use a 301 redirect in Project Settings for permanent redirection or (2) inject a JavaScript snippet in the page’s custom code for temporary or dynamic redirects.

Rate this answer

Other Webflow Questions