Simple Multiple Destination Redirect Script?

Troshi

Supreme Member
Joined
Aug 19, 2011
Messages
1,229
Reaction score
225
I want to order some traffic and send it to multiple urls, but I can only use 1 url for the service. So I was hoping to have this 1 url redirect to my different urls evenly. Is there a script?
 
Also, the redirect urls are going to have to go through a bit.ly and a 3rd party url shortener before they get to the final tracking link, so I really need something quick.
 
something like this?

Code:
<?php
$urls = array(
    "url1",
    "url2",
    "url3"
);

header("Location: " . $urls[rand(0, count($urls) - 1)]);
?>
 
Hi, does this only allow the target url to be redirected to once? or is it random
 
That script pulls a random url each time it's hit.... no limit.
 
If you want to buy traffic, I think typlo's service is pretty good. And you can also select the URLs to send the traffic to.
 
Back
Top