Mobile app version of vmapp.org
Login or Join
Si4351233

: Redirect first time visitors to an introduction page without getting penalized by Google I am working with a client that wants an automatic redirect to a special "intro" page for first-time visitors

@Si4351233

Posted in: #Redirects #SearchEngines

I am working with a client that wants an automatic redirect to a special "intro" page for first-time visitors to his site. We are using a website builder platform that does not allow any access to the server, so we can't do any server-side redirects - it's all client, so we're using javascript and cookies to detect first-time visitors and then jumping to the intro page (example.com/intro) by setting window.location. There is a big "skip intro" link on the intro page to jump back to the home page.

Google is showing the intro page in search results, which makes sense, it's coming in with cookies enabled and then we jump to the intro page so that's what it's seeing. We do have a canonical link on the home page, but not on the intro page.

So this is all kinds of bad and Google is probably thinking that we're doing a sneaky redirect, which makes sense - someone searching based on index keywords on the home page gets redirected to this intro page... not a good search experience, I get it.

Changing to a huge page-blocking interstitial instead of loading a separate page is not good, obviously.

So... what to do. I'm thinking we give up on the magical redirection and put a link on the home page to the intro... if it's a first-time visitor, highlight the link without a content-obscuring popup that Google won't like... trying to make the client happy but getting penalized by Google is good justification for dropping the javascript page redirect.

Q: To confirm, is there a way to redirect (via javascript only) to an "intro" style page without getting dinged by Google and other search sites? How do we do this in a way that makes sense?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Si4351233

1 Comments

Sorted by latest first Latest Oldest Best

 

@Harper822

Q: To confirm, is there a way to redirect (via JavaScript only) to an "intro" style page without getting dinged by Google and other search sites?


A redirect via JavaScript for guests with slower devices and/or high connectivity problems is not so good because some HTML code must load first before the beginnings of JavaScript can even begin. This means more unnecessary bytes to download.

Another thing with a redirect is that it causes users to make two web page requests instead of one. One request for the redirect screen and one request for the web page itself.


How do we do this in a way that makes sense?


Since you can deal with cookies, one idea is to implement a tracking system so that you can distinguish new guests from returning guests. New guests won't have the special cookie that you implement set yet on their systems and they will then be taken to the intro page. returning guests will have the cookie already set so no loading of the intro page is necessary.

But there is something better than all of this

Make the world happy and give everyone options rather than force people to a certain page based on their experience with the site.

Use a small portion of the home page at the top which allows all users regardless of experience to take a tour of the website with one simple click, and of course, add the usual website content below the mini tour advertisement. That way, all search engines can easily find your content and index it.

If you want to tailor it to new users only, then only show the small portion if the users cookie (described earlier) has not been set then have a close button to set the cookie and hide the tour option. Think of it like some websites complying to the new cookie law by using a portion of the screen telling users that cookies are used for site operation etc.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme