Black Hat Forum Black Hat SEO The only backlink provider with unlimited projects/links per day!
Go Back   Black Hat Forum Black Hat SEO > Black Hat SEO > Cloaking and Content Generators

Cloaking and Content Generators Discuss Cloaking, Doorway pages and Automatic content generators for search engine optimization

TouTube views   BLOG SEO
Search
 
E Serve BPO

LiveChatAgent



Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-12-2012, 11:59 PM
JohnDoe1337's Avatar
Registered Member
 
Join Date: Feb 2011
Posts: 59
Thanks: 0
Thanked 1 Time in 1 Post
Reputation: 29
iTrader: (0)
Default How do I redirect from homepage?

Hi,

I have a WP blog with the homepage being SEO optimized (nonsense content) and I want to know how I can redirect automatically to a different part of my blog. I have searched a lot for a guide on this forum on how to do this but found nothing. I installed the gocodes wp plugin but apparantly that's only for affiliate link cloaking since you cannot redirect the homepage...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 01-13-2012, 12:02 AM
balsagoth007's Avatar
Jr. VIP
 
Join Date: Oct 2010
Posts: 820
Thanks: 234
Thanked 380 Times in 179 Posts
Reputation: 170
iTrader: (10)
Send a message via MSN to balsagoth007 Send a message via Skype™ to balsagoth007
Default Re: How do I redirect from homepage?

There's so many redirect plugins in WP.
ex:Simple 301 Redirects
__________________
Click the banner to get your SHH discount
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 01-13-2012, 12:07 AM
JohnDoe1337's Avatar
Registered Member
 
Join Date: Feb 2011
Posts: 59
Thanks: 0
Thanked 1 Time in 1 Post
Reputation: 29
iTrader: (0)
Default Re: How do I redirect from homepage?

Quote:
Originally Posted by balsagoth007 View Post
There's so many redirect plugins in WP.
ex:Simple 301 Redirects
Won't the google crawler see this and take into account the page that is redirected to?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 01-13-2012, 06:33 AM
Newbies
 
Join Date: Dec 2011
Location: Search Engines :)
Posts: 28
Thanks: 0
Thanked 4 Times in 4 Posts
Reputation: 10
iTrader: (0)
Send a message via Skype™ to unique1
Default Re: How do I redirect from homepage?

wordpress. org/extend/plugins/simple-301-redirects/ may be this can help you remove spaces between link and try it with your Wordpress blog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 01-13-2012, 12:40 PM
JohnDoe1337's Avatar
Registered Member
 
Join Date: Feb 2011
Posts: 59
Thanks: 0
Thanked 1 Time in 1 Post
Reputation: 29
iTrader: (0)
Default Re: How do I redirect from homepage?

Quote:
Originally Posted by unique1 View Post
wordpress. org/extend/plugins/simple-301-redirects/ may be this can help you remove spaces between link and try it with your Wordpress blog
But you haven't answered my google question yet :P
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 01-14-2012, 09:43 AM
Autumn's Avatar
Elite Member
 
Join Date: Nov 2010
Location: Spamville
Posts: 2,023
Thanks: 510
Thanked 2,279 Times in 1,067 Posts
Reputation: 1671
iTrader: (2)
Default Re: How do I redirect from homepage?

What you're talking about doing is a basic form of cloaking. Yes, it can / will get you in trouble eventually. You have to decide on exactly what traffic you want to redirect off your home page and how you are going to differentiate bots from browsers.

A simple php example that shows googlebot your homepage but redirects all other traffic to your alternative page is:

Code:
<?php

if(preg_match('/google/i', $_SERVER['HTTP_USER_AGENT'])) {
	// show regular content below
} else {
	header('Location: http://yourdomain.com/some-other-page/', true, 301);
	exit;
}

?>

<!-- Regular homepage html goes here -->
__________________
"An ounce of action is worth a ton of theory." - Ralph Waldo Emerson
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 01-14-2012, 11:21 AM
Newbies
 
Join Date: Jan 2008
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Reputation: 14
iTrader: (0)
Default Re: How do I redirect from homepage?

These replies so far have been useless, or even dangerous.

You are talking about content cloaking, not just redirection. You're right, if you just 301 then your carefully SEO'd home page will be ignored. You are talking about showing one thing to G and another to your real visitors. That will get your site penalized or deindexed if you use the code that someone posted above.

What you need is a very secure cloaker which catches all search engine bots and manual reviewers. Typically cloakers just try to filter out bots using the user's user-agent and/or by comparing their ip address to a known database. But there are several other layers of security you need as well.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 01-14-2012, 11:27 AM
Newbies
 
Join Date: Jan 2008
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Reputation: 14
iTrader: (0)
Default Re: How do I redirect from homepage?

An elite member with almost 2k posts and over 2k thank yous. Why would you give the OP code that was going to get her site destroyed in the SERPs? His rankings would last less than a week with that code.

Quote:
Originally Posted by Autumn View Post
What you're talking about doing is a basic form of cloaking. Yes, it can / will get you in trouble eventually. You have to decide on exactly what traffic you want to redirect off your home page and how you are going to differentiate bots from browsers.

A simple php example that shows googlebot your homepage but redirects all other traffic to your alternative page is:

Code:
... dangerous code omitted ...

Last edited by hugh14; 01-14-2012 at 11:28 AM. Reason: pronoun gender correction
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 01-14-2012, 03:10 PM
Newbies
 
Join Date: Jan 2012
Posts: 39
Thanks: 0
Thanked 5 Times in 1 Post
Reputation: 24
iTrader: (0)
Default Re: How do I redirect from homepage?

I have no idea how cloaking works at all but hopefully reading these threads I can teach myself
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 01-14-2012, 08:14 PM
Autumn's Avatar
Elite Member
 
Join Date: Nov 2010
Location: Spamville
Posts: 2,023
Thanks: 510
Thanked 2,279 Times in 1,067 Posts
Reputation: 1671
iTrader: (2)
Default Re: How do I redirect from homepage?

Quote:
Originally Posted by hugh14 View Post
An elite member with almost 2k posts and over 2k thank yous. Why would you give the OP code that was going to get her site destroyed in the SERPs? His rankings would last less than a week with that code.
Why don't you shut the fuck up? Obviously I gave that as an example and no, simple UA cloaking won't get you banned within a week on a low key site. No one's going to give out full cloaking scripts on BHW.

Can't help but notice that you're pumping your own elite service with a mere 18 spots still open. Newsflash, all the good custom code gets shared on private boards and IMs between people who trust each other... Not who trawl message boards trying to drum up business.

10 years of IM experience has shown me that, in general, most people who talk about "we" are really just some guy in his basement and a quick skim of your other posts tells me that you like to repeat what you've been reading on message boards, not what you've learned from your own experience.

You need 50 people to buy Shadowmaker? You obviously don't have much of an income then. Have fun with your 32 imaginary friends.

Fuck off with your 15 posts you worthless piece of low life trash.
__________________
"An ounce of action is worth a ton of theory." - Ralph Waldo Emerson
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to Autumn For This Useful Post:
IGotta (01-16-2012)
  #11 (permalink)  
Old 01-14-2012, 09:49 PM
JohnDoe1337's Avatar
Registered Member
 
Join Date: Feb 2011
Posts: 59
Thanks: 0
Thanked 1 Time in 1 Post
Reputation: 29
iTrader: (0)
Default Re: How do I redirect from homepage?

Quote:
Originally Posted by Autumn View Post
Why don't you shut the fuck up? Obviously I gave that as an example and no, simple UA cloaking won't get you banned within a week on a low key site. No one's going to give out full cloaking scripts on BHW.

Can't help but notice that you're pumping your own elite service with a mere 18 spots still open. Newsflash, all the good custom code gets shared on private boards and IMs between people who trust each other... Not who trawl message boards trying to drum up business.

10 years of IM experience has shown me that, in general, most people who talk about "we" are really just some guy in his basement and a quick skim of your other posts tells me that you like to repeat what you've been reading on message boards, not what you've learned from your own experience.

You need 50 people to buy Shadowmaker? You obviously don't have much of an income then. Have fun with your 32 imaginary friends.

Fuck off with your 15 posts you worthless piece of low life trash.
I would like to add that I got "invited" into his group (after I joined, the website still said "18 open spots"...). It turns out you have to pay 200$ a month to be part of this "exclusive" group. Turns out it's just a pyramid scheme since you can reduce that price by referring more people.... So yea, don't trust this guy.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to JohnDoe1337 For This Useful Post:
Autumn (01-15-2012)
  #12 (permalink)  
Old 01-16-2012, 12:49 PM
Newbies
 
Join Date: Jan 2008
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Reputation: 14
iTrader: (0)
Default Re: How do I redirect from homepage?

So let's get this straight. Autumn posts some code that will get you de-indexed if you use it. I call her on it. I mention that I am starting a group to do stuff like this right. Autumn flames me because I hurt her little feelings I guess. OP flames me because he wanted to get something for nothing.

Autumn, if someone asks for a way to do something, and you give them code that will do it but kill their site and don't explicitly state that it is just an example and NOT to use it you are being dangerous. You might have meant it as an example but don't expect people to be able to read your mind, as short a read as that might be. How the heck did someone like you get to be a moderator here?

John, seriously! You didn't join the group, you just joined the email list to get access to the invitation. Then you clearly read the invitation which does require a contribution from each member (but not $200 like you said). Also, since when does an affiliate commission make something a pyramid scheme?

Lastly, this has nothing to do with a group buy of Shadowmaker. I have indeed collected a small group (up to 33 now) willing to chip in on a coder. Once we get up to 50 we will then try to recruit exactly 150 more at a higher rate so that the first 50 people can pay even less. That's it - the group never gets beyond 200 tops. Does that really sound like a pyramid scheme? Join, get access to tools and our own coder, get a commission for referring others - pretty standard fair in this industry isn't it?

Now you guys can rant all you want. I've corrected the misrepresentations that you have made and I'll leave it at that.

Last edited by hugh14; 01-16-2012 at 12:51 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 01-16-2012, 07:30 PM
Autumn's Avatar
Elite Member
 
Join Date: Nov 2010
Location: Spamville
Posts: 2,023
Thanks: 510
Thanked 2,279 Times in 1,067 Posts
Reputation: 1671
iTrader: (2)
Default Re: How do I redirect from homepage?

Quote:
Originally Posted by hugh14 View Post
Does that really sound like a pyramid scheme? Join, get access to tools and our own coder, get a commission for referring others - pretty standard fair in this industry isn't it?
Sound like some scammy bullshit to me. Anyone who is an active cloaker knows that the actual code for cloaking is drop dead simple - say 20-50 lines max of actual code for a typical script. The hard bit is not the actual coding, which can be done by any old noob, but deciding on heuristics for what combination of actual conditions you want to cloak for - IP? UA? referrer? cookies? js? different browser headers? etc.

The coding is cheap but the decision making is hard and requires some thinking and some existing SEO skills. It certainly doesn't take 50 or 200 people to buy a cloaking script - it takes one person with a knowledge of how bots and browsers work and the HTTP protocol, and maybe $100 if they need to pay a coder to actually write up the script that they want.

Also the other part of a cloaking script is the retrieval of your content, which varies according your particular data storage method (SQL or flat text files?) and CMS (eg. WP or Drupal or custom CMS?). If you are taking the "mosaic" cloaking approach then you are serving different versions of the same page to different browsers, requiring even more storage finesse. That is obviously not a one-size-fits-all solution and the storage part needs to be customized for each user's particular application.

Lastly I would add that there is no such thing as a "super secure" cloaking mechanism. No matter what scheme you use, there are always tradeoffs that mean that someone (either the bots or the real users, depending on your method) can bust your cloak wide open if they are so inclined. A simple example is that you can make a cloaking script secure from regular users by using a spider IP list and only cloaking by IP. It's impossible to fake an IP and get any data back, so regular users are effectively completely barred from seeing your spider content. However, that means that all the SE spiders have to do is come from an IP that's not on your list, and they can easily see the content you're serving to regular users. Steps you might take to moderate this risk then mean that it's easier for regular users to get at your spider content. In some ways cloaking is ultimately a no-win situation with no "best" solution and you just have to decide what you want your risk profile to be.

Anyone who claims that totally secure cloaking is possible is probably an inexperienced noob who is trying to talk himself up, or a lying schemer with a commercial incentive to get your money.
__________________
"An ounce of action is worth a ton of theory." - Ralph Waldo Emerson
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Backlinks Genie

SE Nuke



Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
SEO Premium Network - The Highest Authority PR4-6 Homepage Backlinks, IMPROVE YOUR SERPS! MrE Buy/Sell Services 159 06-13-2011 03:36 PM
Google Redirect Virus Update! 2011nfl BlackHat Lounge 9 01-11-2011 05:00 PM

BlackHole


Web Hosting
Copyright © 2005 - 2012 BlackHatWorld.com All rights reserved.