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
  • Set up a 301 redirect in Webflow Project Settings under the SEO tab by entering the old path and external URL, then publish.  
  • Alternatively, embed JavaScript in the page's settings to redirect using window.location.href for temporary or custom redirection behavior.

Yes, you can redirect a Webflow page to another URL, such as http://krystle_svetlana.dribbble.com, by using a 301 redirect or a custom embed script depending on the use case.

1. Use Webflow’s 301 Redirects (Recommended for published pages)

  • Go to Project Settings in your Webflow dashboard.
  • Click the SEO tab.
  • Scroll to the 301 Redirects section.
  • In Old Path, enter the relative Webflow path you want to redirect (e.g., /portfolio).
  • In Redirect to Page, enter the full external URL:  

  http://krystle_svetlana.dribbble.com

  • Click Add Redirect.
  • Publish your site to apply the changes.

This method is ideal if you simply want to permanently redirect a visitor from a Webflow route (like /portfolio) to the Dribbble profile.

2. Use JavaScript on a Webflow Page (for temporary client-side redirects)

If you need the visitor to briefly load your Webflow page then automatically redirect, do this:

  • Go to the target Webflow page in the Designer.
  • Open the Page Settings.
  • Scroll to the Before </body> tag section.
  • Paste the following snippet:

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

  • Publish the site.

Use this if you want to add a delay, animate the redirect, or conditionally control redirection.

Summary

You can redirect a page in Webflow to http://krystle_svetlana.dribbble.com using either a 301 redirect from the Project Settings or a JavaScript snippet on the page. Use the 301 method for permanent SEO-friendly redirects; use JavaScript for custom behavior.

Rate this answer

Other Webflow Questions