customized cloaking script required

jdblackbox

Newbie
Joined
Apr 8, 2016
Messages
1
Reaction score
0
Hi i am looking for customized cloaking script to cloak my adword account. I want all bots, reviewer to go to safe page and users to money page. i also want real visitor to be redirect to money page only if they are coming from google search engine.

I want to cloak all bots user agent as well as ip address. Pls advise if any can help i dont mind paid support as well.

Thanks
 
What content delivery system are you using? wordpress?
 
Hi i am looking for customized cloaking script to cloak my adword account. I want all bots, reviewer to go to safe page and users to money page. i also want real visitor to be redirect to money page only if they are coming from google search engine.

I want to cloak all bots user agent as well as ip address. Pls advise if any can help i dont mind paid support as well.

Thanks

8 months later I don't know if you're still looking for a solution.

If I understand, only the users coming from google must be redirected to the money page. All the other users (Bots, reviewers) must stay in the safe page.

At this point you do not need to care about who is a bot or not, you just have to look if you have a referer, and if the referer is Google just redirect the user to the money page.

Maybe these few lines can do the trick (or not)

Code:
<?php
   if(isset($_SERVER['HTTP_REFERER']) && preg_match('#https:\/\/www\.google\.#',$_SERVER['HTTP_REFERER']))){
       
       header("HTTP/1.1 301 Moved Permanently");
       header("Location: http://www.your-domain.com/money-page.html");
   }
?>
 
8 months later I don't know if you're still looking for a solution.

If I understand, only the users coming from google must be redirected to the money page. All the other users (Bots, reviewers) must stay in the safe page.

At this point you do not need to care about who is a bot or not, you just have to look if you have a referer, and if the referer is Google just redirect the user to the money page.

Maybe these few lines can do the trick (or not)

Code:
<?php
   if(isset($_SERVER['HTTP_REFERER']) && preg_match('#https:\/\/www\.google\.#',$_SERVER['HTTP_REFERER']))){
      
       header("HTTP/1.1 301 Moved Permanently");
       header("Location: http://www.your-domain.com/money-page.html");
   }
?>


@bestscoop ...you are awesome
Tricky man
 
8 months later I don't know if you're still looking for a solution.

If I understand, only the users coming from google must be redirected to the money page. All the other users (Bots, reviewers) must stay in the safe page.

At this point you do not need to care about who is a bot or not, you just have to look if you have a referer, and if the referer is Google just redirect the user to the money page.

Maybe these few lines can do the trick (or not)

Code:
<?php
   if(isset($_SERVER['HTTP_REFERER']) && preg_match('#https:\/\/www\.google\.#',$_SERVER['HTTP_REFERER']))){
      
       header("HTTP/1.1 301 Moved Permanently");
       header("Location: http://www.your-domain.com/money-page.html");
   }
?>
Hi Sunny, you still looking for a cloaker solution? Got a few recommendations we can hit you with. There is a key to working with Google and cloakers, let me know!
 
Any of the commercial cloaking services will do what you need here (even though this is a very old post originally). You want something with a support line that works with you and actively does traffic analysis to identify new fingerprints and as needed, IPs.
 
Back
Top