create go.php
<?php $rand_link=rand(20,60); if($rand_link > 20) {$link="/page2.php";} if($rand_link > 30) {$link="/page3.php";} else {$link="/default.php";} header("Location: $link"); ?>
create go.php
<?php $rand_link=rand(20,60); if($rand_link > 20) {$link="/page2.php";} if($rand_link > 30) {$link="/page3.php";} else {$link="/default.php";} header("Location: $link"); ?>