<?php
//Here is the known mobile user agents list
$mobiles = array("iPhone","iPod","Android");
foreach( $mobiles as $mobile ) {
if( preg_match( "#".$mobile."#i", $_SERVER['HTTP_USER_AGENT'] ) ) {
header('Location:index_mob.php');
} else {
header('Location:index_pc.php');
}
}
?>