Question about spiders and redirection

Status
Not open for further replies.

xraymikek

New member
May 10, 2008
7
0
0
I want to redirect people from my homepage and main site to another set of pages for their first visit. Once they have been through that set of pages one time, I want to dump them back off on the homepage. The easiest way I know is to set a cookie. The problem I expect is that spiders will not allow a cookie to be set, so they will always get redirected from the homepage, no matter what.

How do I use cookies properly to redirect my visitors without spiders getting stuck in that set of pages. Or, is there a better method? Maybe htaccess?
 


Can you set the cookie first and then redirect them *if* the cookie has been set? Because spiders don't accept cookies, you would then only redirect people who have the cookie (real users). On subsequent visits, you'll need to check the cookie to see if the user has already been on the "tour" and redirect based on the actual value of the cookie.

Hope this helps,
Ric
 
Yes, technically this is cloaking, but considering the fact that the search engine is being directed to the same pages that users are (unless they happen to be first-time visitors), I wouldn't view it as malicious, and I consider it unlikely that you'd see a penalty from Google, but there is at least some risk here.
 
Yes, technically this is cloaking, but considering the fact that the search engine is being directed to the same pages that users are (unless they happen to be first-time visitors), I wouldn't view it as malicious, and I consider it unlikely that you'd see a penalty from Google, but there is at least some risk here.
If you redirect the search engines to the same page as the user, they will only index the home page.
If you do not, it's cloaking.
And while it's not malicious, you seem to be under the mistaken idea that Google is reasonable.
 
How about just going with a safer approach all around? If the user doesn't have a cookie, show a big popup or something that says "New users click here for the tour." Then, the search engines and your users get the same page, and you've avoided any appearance of cloaking.
 
Status
Not open for further replies.