A script that redirect to another page, like the referer.us script.

Fripper

Regular Member
Joined
Jan 8, 2012
Messages
416
Reaction score
143
Maybe some of you are aware of the referer.us script which redirected people to a porn site instead of your choosen page. Before that it was working good and I used it alot.

So I'm looking for a similiar one now, anyone have one or can point me in the right direction?

The script worked like this I think:
You pointed visitors to your site with the script on and it redirected it to your preferred site. We could even put 3 sites of your choice in there and the script automatically switched between those.

I did some search but didn't find much or I didn't know how to set some of them up.

Any help appreciated.
 
Bloody hell, that happens to me too. Its been a month and the referrer us redirected it to onesexaday. What the heck -_-'
 
Sounds easy.Make index.php on main site,put 3 sites in array or in some list or whatever and redirect to rand (array).Or you want to do something else ?
 
Yeah maybe it is easy but I don't know how to do it so..

I can even pay someone a little if they can help me out over skype or so.
 
Code:
<?php
$sites = array("1" => "site1","2" => "site2","3" => "site3");
echo '<meta http-equiv="refresh" content="0; URL='.$sites[rand(1,3)].'">';
?>
also blank refferer, in most cases ...
 
Code:
<?php
$sites = array("1" => "site1","2" => "site2","3" => "site3");
echo '<meta http-equiv="refresh" content="0; URL='.$sites[rand(1,3)].'">';
?>
also blank refferer, in most cases ...

Thanks, but how do I set it up?
 
:D
Okay lets pretend you can get people to go to your "site" (that "site" only redirects people)

Create a file named index.php in the main/root folder
Copy the code in that file
Replace site1 site2 site3 with the sites you would like them to be redirected (affiliate link or whatever)
 
That's easy..
Inside you index file edit to this:
<?php/* Redirect browser */
header("Location: http://youwebsitegoeshere.com");
/* Make sure that code below does not get executed when we redirect. */
exit;
?>
 
:D
Okay lets pretend you can get people to go to your "site" (that "site" only redirects people)

Create a file named index.php in the main/root folder
Copy the code in that file
Replace site1 site2 site3 with the sites you would like them to be redirected (affiliate link or whatever)

I managed to get it work.

Tested it and it works like a charm, switching between the links.

Awesome!

+rep given.

Thanks to all for the help.
 
Would it be possible to set up different affiliate urls for a specified page?
 
Back
Top