YOU ARE NOT ON MOBILE

<?php
$mystring = $_SERVER['HTTP_USER_AGENT'];
$findme = 'Mobile';
$pos = strpos($mystring, $findme);

if ($pos == true) { // YOU ARE USING Mobile
header('Location: http://santiago.bz'); // SEND TO MOBILE SITE
}

?>