Traffic distribution

meCODEX

Registered Member
Joined
Jun 23, 2011
Messages
81
Reaction score
11
I want to buy some traffic but i want to make something and don't know how to do it.

I want to sent all my traffic to a link, let's say : mysite.com/traffic.php or /traffic.html
and from there i want to distribute traffic, random or equal to a list of links .

from mysite.com/traffic.php to --> mysite.com/1.html
--> mysite.com/2.html
--> mysite.com/3.html​

does anyone know a script like this or a wordpress plugin ?

Thank you :)
 
you could always redirect them with a refresh timer
Code:
 <META http-equiv="refresh" content="5;URL=theurltoyournextpage">

content variable set to 5 seconds or any number of your choice
 
Code:
<?php
$links=array("url1","url2","url3");
$destination=$links[mt_rand(0,count($links)-1)];
header("Location: " . $destination);
exit(); 
?>

Replace the url1,2,3 with your links and you can add links to your needs. It redirects to one of the links in random style.
 
Thank you very much !
 
If your using wordpress for your sites you can use https://prettylinkpro.com/ to split test, or other methods for split testing your pages.

Code:
https://www.google.com/#q=split+testing+tools
 
Back
Top