Mobile app version of vmapp.org
Login or Join
Heady270

: How to make users arrive at site through the home page A client has requested that all site visitors arrive to internal pages via the home page. At present a lot of visitors are hitting internal

@Heady270

Posted in: #Page #Users

A client has requested that all site visitors arrive to internal pages via the home page. At present a lot of visitors are hitting internal pages directly from google search results. Are there any techniques for channeling users ?

Apologies if this is a stupid question.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Heady270

1 Comments

Sorted by latest first Latest Oldest Best

 

@Harper822

Redirecting visitors to the homepage when they've requested a subpage is generally a bad idea because:


Search engines will cease to index subpage content, resulting in big traffic drops.
Users will struggle to find the information that brought them to the site in the first place.


However, if there's a very good reason to do so (and I can think of few), there are a couple of ways to redirect visitors to the homepage if they hit a subpage:


Check for the existence of a cookie that's only set if they've visited the homepage.
Check that the HTTP referrer belongs to the same domain.


Note that neither of these methods are foolproof, as both cookies and referrer information can be spoofed, but they will probably suffice for basic use.

A better alternative to the redirection system your client has asked for might be to detect that it's the first time a visitor's been to the site (with cookies), then show them a welcome message -- either inline with the HTML or as a subtle animated overlay -- prompting them to visit the homepage or read an FAQ to learn more, a bit like sites on the Stack Exchange network do. (Click for large view):

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme