php: sending 10% of your traffic

263 Views Asked by At

My code:

$random_number = mt_rand(1,100);

if ($random_number <= 10){
    header('Location: http://www.site1.com');
} else {
    header('Location: http://www.site2.com');
}

exit;

Needless to say, it seems to work if you have a lot of traffic, but when you are down to around 1000 uniques a day, the percentage hovers around 35 to 40%.

2

There are 2 best solutions below

2
On BEST ANSWER

For a more accurate distribution of traffic use a load balancer or increment a counter in your code.

Here is a nice article on why mt_rand isn't so random

1
On

If you're looking to do some A/B testing, there's a better way than blindly choosing at random and it's not really more complex.