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.
If you're trying to permanently redirect a Webflow page to an external URL, use this method:
/portfolio
).http://krystle_svetlana.dribbble.com
.Note:
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:
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.