PHP Code: 
 <?php
$lesites 
= array(
    
'http://www.warezlobby.org/',
    
'http://www.atomicwarez.com/',
    
'http://www.warezsearch.org/'
);

$randsite $lesites[array_rand($lesites)];

((
headers_sent() === false) {
header('Location: '.$randsite);
die(
'<a href="'.$randsite.'">Click here if you have not been redirected</a>'));
}else{
die(
'<a href="'.$randsite.'">Click here if you have not been redirected</a>'));
}
?>