Any errors/warnings shows?
If any, try
<?php
ob_start();
$urls=array('hXXp://google.com', 'hXXp://facebook.com', 'hXXp://twitter.com'); // XX->tt cuz I can't post urls
header('HTTP/1.1 301 Moved Permanently');
header('Location: '.$urls[rand(0, count($urls)-1)]);
ob_end_flush();
?>