Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 03-05-2011, 09:04 PM   #1
Jakez
Confirmed User
 
Jakez's Avatar
 
Industry Role:
Join Date: Jan 2004
Location: oddfuturewolfgangkillthemall!!!!!!!
Posts: 5,656
SEO gurus? How can I redirect all my traffic and make it look like an accident?

Ok so I want to take all the traffic from a site and redirect it somewhere for 3-4 days or a week if possible. But I dont want to lose all the SE traffic. Usually when your site goes down and you lose your ranks you can fairly easily get them back when its online again.

What would be the safest way to pull this off and make it look like I just had some hosting problems or something?

Edit: wait I didnt clarify enough, I dont want to redirect ALL the traffic, as the SE's would obviously notice that. I just want to take like 80-90% of the traffic away from the site which is feeder traffic. I'm not going to technically redirect the site to anything.. Damn it I would edit this to remove any wording of redirect if I didnt post this from my phone.

Last edited by Jakez; 03-05-2011 at 09:11 PM..
Jakez is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-05-2011, 09:06 PM   #2
alias
aliasx
 
alias's Avatar
 
Join Date: Apr 2001
Posts: 19,010
Intermittently with 302?
__________________
https://porncorporation.com
alias is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-05-2011, 09:07 PM   #3
HarryMuff
Confirmed User
 
HarryMuff's Avatar
 
Join Date: Dec 2005
Posts: 271
reported to google
HarryMuff is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-05-2011, 09:17 PM   #4
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
save as secret.php
Code:
<?php
$guy = $_SERVER["HTTP_REFERER"];
$num = rand(1, 100);
if ($guy == ""){
?>
var visitor = "google bot";
<?php
} else {
?>
var visitor = "not a bot";
<?php
if($num < 80){
?>
top.location.href="http://redirect.com";
<?php
}
}
?>
call in head of page like <script src=http://yoursite.com/secret.php></script>
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-05-2011, 09:20 PM   #5
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
when google or any bot checks your page they don't send a referer. so this script checks for a referer , if there isn't one it is likely a bot , so then it will take 80% of non-bot traffic and send it to the url specified.
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-05-2011, 10:01 PM   #6
woj
<&(©¿©)&>
 
woj's Avatar
 
Industry Role:
Join Date: Jul 2002
Location: Chicago
Posts: 47,882
do something along the lines of what Smokey said, but put the javascript code on a different domain, so it will look like your site got hacked...
__________________
Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager
woj is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-05-2011, 10:14 PM   #7
HarryMuff
Confirmed User
 
HarryMuff's Avatar
 
Join Date: Dec 2005
Posts: 271
Quote:
Originally Posted by SmokeyTheBear View Post
save as secret.php
Code:
<?php
$guy = $_SERVER["HTTP_REFERER"];
$num = rand(1, 100);
if ($guy == ""){
?>
var visitor = "google bot";
<?php
} else {
?>
var visitor = "not a bot";
<?php
if($num < 80){
?>
top.location.href="http://redirect.com";
<?php
}
}
?>
call in head of page like <script src=http://yoursite.com/secret.php></script>
What is the point of declaring "visitor" in js then never using it?
Also, if a blank "HTTP_REFERER" means it's the google bot then why would you go and use javascript to redirect when you could do it in PHP?
HarryMuff is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-05-2011, 10:30 PM   #8
iamtam
So Fucking Banned
 
Join Date: Feb 2010
Posts: 1,211
ask legendary lars.
iamtam is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-05-2011, 10:34 PM   #9
woj
<&(©¿©)&>
 
woj's Avatar
 
Industry Role:
Join Date: Jul 2002
Location: Chicago
Posts: 47,882
Quote:
Originally Posted by HarryMuff View Post
What is the point of declaring "visitor" in js then never using it?
Also, if a blank "HTTP_REFERER" means it's the google bot then why would you go and use javascript to redirect when you could do it in PHP?
Smokey probably means that when google fetches ->
<script src=http://yoursite.com/secret.php></script>
it sends no referer... the referer checker is on that page, not on the page you want redirected from...
__________________
Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip Manager
woj is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 03:19 AM   #10
rowan
Too lazy to set a custom title
 
Join Date: Mar 2002
Location: Australia
Posts: 17,393
Don't forget that Google and Bing have toolbars that phone home details of websites that surfers visit, an 80% redirect will stick out like a sore thumb...
rowan is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 07:02 AM   #11
Barry-xlovecam
It's 42
 
Industry Role:
Join Date: Jun 2010
Location: Global
Posts: 18,083
Quote:
Originally Posted by iamtam View Post
ask legendary lars.
Barry-xlovecam is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 07:14 AM   #12
u-Bob
there's no $$$ in porn
 
u-Bob's Avatar
 
Industry Role:
Join Date: Jul 2005
Location: icq: 195./568.-230 (btw: not getting offline msgs)
Posts: 33,063
put the js code on a page that is loaded in an adsized iframe (that is constructed using js). Put that page on some randomadvertisingrelated.com on another host/ip. could even make it look like its running a notoriously insecure ad system like openx.
u-Bob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 08:42 AM   #13
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by HarryMuff View Post
What is the point of declaring "visitor" in js then never using it?
Also, if a blank "HTTP_REFERER" means it's the google bot then why would you go and use javascript to redirect when you could do it in PHP?
var visitor is purely for showing a novice user what is going on, i suppose i could have used

// this is a bot
// this is not

if you did a php redirect in a javascript it wouldn't do jack shit except make a script error.

reason why i used it like that is so if a detective surfer was checking out what happened and check the js they see nothing ( blank referer ).

also if by chance a bot does check with a referer essentially they see the same page as they would if they checked without one, they would only detect a difference if they checked both the page and the script both with and without referer.
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 11:11 AM   #14
martinsc
Too lazy to set a custom title
 
Industry Role:
Join Date: Jun 2005
Location: 127.0.0.1
Posts: 27,047
Quote:
Originally Posted by iamtam View Post
ask legendary lars.
__________________
Make Money
martinsc is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 01:35 PM   #15
Fabien
Confirmed User
 
Industry Role:
Join Date: Jul 2003
Posts: 4,787
Hire a female webmaster ? (oh shit hehehehehe)
Fabien is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 01:41 PM   #16
fuzebox
making it rain
 
fuzebox's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: seattle
Posts: 22,055
Careful of lowering your bounce rate to the point where google can see how quickly the surfer clicks on the next result below yours
fuzebox is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 01:54 PM   #17
CaptainHowdy
Too lazy to set a custom title
 
CaptainHowdy's Avatar
 
Industry Role:
Join Date: Dec 2004
Location: Happy in the dark.
Posts: 93,337
Don't start a thread about it ...
__________________
"Tjeezers.cam wishes you a nice day”
CaptainHowdy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 02:04 PM   #18
chaze
Confirmed User
 
Industry Role:
Join Date: Aug 2002
Posts: 9,752
Sorry but I don't think you can. I mean there is some java codes that redirect google images in a way where you usually will not lose your listing. Mine so far has held up a month after I added the redirect. But it's a wordpress plug not sure what the actual code is.
chaze is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 04:43 PM   #19
$5 submissions
I help you SUCCEED
 
$5 submissions's Avatar
 
Industry Role:
Join Date: Nov 2003
Location: The Pearl of the Orient Seas
Posts: 32,195
If it's a blog, you can have it pull from the same dbase as your target site. Great way to throttle SE traffic. There's always a slight chance of penalty though.
$5 submissions is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-06-2011, 04:49 PM   #20
Jakez
Confirmed User
 
Jakez's Avatar
 
Industry Role:
Join Date: Jan 2004
Location: oddfuturewolfgangkillthemall!!!!!!!
Posts: 5,656
Eh my original post was really off target. Basically I want to pull the feeder traffic and send it somewhere else as a test for a week or less, which will cause the SE traffic to dive, so I'm trying to think of the best possible way to ensure that I can regain my rankings after I send the feeder back to the site again.

From what I've experienced many times when traffic takes a dive is that it usually takes double the traffic loss to regain the amount of SE traffic there was before the decline. So if the site loses 10,000 in daily traffic the SE traffic dives and it would take a spike of 20,000 to get back to the previous amount of SE traffic.

Guess I'll just have to do it and hope for the best..
__________________
[email protected] - jakezdumb - 573689400

Killuminati

Last edited by Jakez; 03-06-2011 at 04:55 PM..
Jakez is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.