vBulletin Search Engine Optimization
This is a discussion on Is this cloaking? within the General Discussion forums, part of the vBulletin SEO Discussion category; Is it anything of these on risk for cloaking? Relevant Replacements (Guests only) Adsense (Guests only) Content of Threads/Posts (Allow ...
| |||||||
Enhancing 80 million pages. | Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
| |||
| |||
| Is this cloaking?
Is it anything of these on risk for cloaking?
|
|
#2
| ||||
| ||||
|
I don't think so. I'm also using some of the above mentioned tweaks : # Adsense (Guests only) # <!-- forum rules --> on Thread/Forum pages (Members only) # <!-- Active Users in this Forum.... --> on Forum pages (Members only) |
|
#3
| ||||
| ||||
|
members VS guests is NOT a cloaking issue. it is expected that members have more features. HUMAN guests VS BOT guests is where cloaking comes into play. As long as your human guests see the same thing as your bot guests, you're 100% in the clear. sniffing out user agents and running conditionals like (pseudocode Code: if($_SERVER['user-agent'] = 'googlebot') {
echo "<h1>Hi robot. here's some keyword stuffing:</h1>
<p>keyword, keyword, keyword, stuff stuff stuffing</p>"; }
else { echo "<h1>Hi Human.</h1>"; }
Last edited by briansol; 06-03-2008 at 12:57 PM.. |
|
#4
| |||
| |||
| Quote:
Thank you both for answering |