odonk-odonk
Newbie
- Jun 20, 2012
- 26
- 4
disguising something i think
Great answers all-round.
Some suggesting cloaking is a good idea, others saying it'll get you banned.
What is the general thoughts from the BHW community on this:
I have a clickbank product I'm selling on my site. I've put a banner (provided by the product seller) on my sidebar and I want to use a cloaking plugin so when users hover over the banner (which is CLEARLY for an external page/site) they get a nice, neat URL - mysite.com/product - as opposed to the off putting 12412515jk1h5212uih1nj3462sdf.affiliate.username.c om.
I know this is probably the most common use of link cloaking but will it still increase the chances of my site being punished? Is there an acceptable way to cloak links in order to simply tidy them up?
great,even and old farth like me understand,thanksI cant say it much better, so:
"Cloaking is a search engine optimization (SEO) technique in which the content presented to the search engine spider is different from that presented to the user's browser. This is done by delivering content based on the IP addresses or the User-Agent HTTP header of the user requesting the page. When a user is identified as a search engine spider, a server-side script delivers a different version of the web page, one that contains content not present on the visible page, or that is present but not searchable. The purpose of cloaking is sometimes to deceive search engines so they display the page when it would not otherwise be displayed (black hat SEO). However, it can also be a functional (though antiquated) technique for informing search engines of content they would not otherwise be able to locate because it is embedded in non-textual containers such as video or certain Adobe Flash components."
don't use clocking because google don't like that.its harmful for your website.
Great answers all-round.
Some suggesting cloaking is a good idea, others saying it'll get you banned.
What is the general thoughts from the BHW community on this:
I have a clickbank product I'm selling on my site. I've put a banner (provided by the product seller) on my sidebar and I want to use a cloaking plugin so when users hover over the banner (which is CLEARLY for an external page/site) they get a nice, neat URL - http://mysite.com/product - as opposed to the off putting 12412515jk1h5212uih1nj3462sdf.affiliate.username.c om.
I know this is probably the most common use of link cloaking but will it still increase the chances of my site being punished? Is there an acceptable way to cloak links in order to simply tidy them up?
Redirect /product http://youraffiliatelink.com
www.amazon.com?affid=828282&prdctid=2626262
www.amazon.com?prdctid=2626262
<?php
$userAgent = $_SERVER['HTTP_USER_AGENT'];
echo $userAgent . "<br />";
if(stripos($userAgent, 'google' ) === FALSE)
{
echo 'This is not google bot, display affiliate links';
}
else
{
echo 'This is google bot, hide affiliate links';
}
?>