Redirect a page to another URL

Hi there,

I’m wanting to re-direct a page on my webflow website to this URL: http://krystle_svetlana.dribbble.com.
Is this possible? And if so, how do I do it?


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

1 Like

This is not a bug.

301 handle relative URLS (From /about to /about-us).

Option 1 - redirect the entire site by domain setting (Not your case):

Option 2 - Custom code ==> copy-paste this before body on page X

<script>
window.location.replace("http://krystle_svetlana.dribbble.com");
</script>

Keep in mind this will harm the SEO of the “original page” (Its better to ROBOTS noindex nofollow this page).

<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">

User Experience
User clicks on page Y (In your site) And suddenly redirect to dribble (Bad UX).

4 Likes

Hi, @Krystle_Svetlana!!

Thanks so much for asking this question! It looks like @Siton_Systems has knocked this out of the park and provided some great options.

I did move this to a different category since it isn’t a bug!

Don’t hesitate to post again if you need anything else!

Thanks for the reply guys… I might just avoid doing this option and find a creative way to link to the URL instead! Thanks for your help : )

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.