|
Aug
1
2
|
Cloaking is Not Evil: Part III |
|||||
Matt Cutts reaffirmed his distaste for cloaking in his most recent videos over here. However, I still fail to see a problem with cloaking used ethically, and every time I think of an ethical use I post it on this blog. Chris Boggs posts here that he implemented load-balancing for a web site via round-robin DNS. The problem is that this solution yields the same problem as mirroring a site. And if you think about it, it's basically the same thing — except that the mirror selected is random. Typically, instead of a user clicking a link to get to the mirror, he is redirected. In both cases, there are duplicate content issues looming in the background. Here are the problems: 1. Like mirroring, you will inevitably cause Google to guess which of the sites is the primary site and which are the mirrors. It may guess incorrectly. It may also assume you are a spammer. So what do you do? Ideally, you would use some sort of load-balancing appliance to obscure the fact that there are multiple servers. I know Cisco makes a few of them. However, I also see no harm in using cloaking to detect Google and make sure it stays at the primary site if it's already there — don't redirect it! If it does start to crawl a mirror, for whatever reason, redirect it back to www.example.com. This could be achieved easily using a cloaking library that detects if the user-agent is a spider. It would then redirect it to the same URL on www.example.com. With PHP and my cloaking library, it would look something like this: <? if ($confidence = SimpleCloak::isSpider()) {
The best solution, I admit, is the load-balancing appliance — but that's a lot more expensive. The only problem I see with my solution is that users will continue to link to the other versions regardless. Ideally, this wouldn't happen. The links would be redirected and probably still count; that is still not ideal, however. So if you can afford a load-balancing appliance, go for it. Disclaimer: According to Matt Cutts, this could still get you banned :) But does anyone else fail to see how cloaking is universally unethical? Related posts: Cloaking Is Not Evil: Part I This post is an answer to those who have criticized... Cloaking is Not Evil: Part II Someone commented on my last post that there is a... The Google Cloaking Hypocrisy I've been digesting this for awhile. Barry Schwartz of Search... The Debbie Does New Delhi Of Cloaking Since I got my 10 links, I can now post... Google does Evil? The following is a quote straight from Google's Investor Relations...
| ||||||
"2 Wise Comments Banged Out Somewhere On The Internet ..."
You can make an appliance yourself using and old PC and the Linux Virtual Server Project. http://www.linuxvirtualserver.org/
Anyone use the cloaker called SEC ?? Like to hear what everyone thinks is the best cloaker out there….
|


















