dont know if this is possible ..
is there anyway to rotate 2 different index pages of a site using .htaccess ?
is there anyway to rotate 2 different index pages of a site using .htaccess ?
<?php $amount = "2"; $url[1] = "http://www.yoursite.com/index1.html";$url[2] = "http://www.yoursite.com/index2.html";srand((double)microtime()*1000000); $random = rand(1,count($url));header("Location: $url[$random]");?>


Comment