user_agent.php oluşturun.
<?php
$iphone = strpos($_SERVER['HTTP_USER_AGENT'],"iPhone");
$android = strpos($_SERVER['HTTP_USER_AGENT'],"Android");
$palmpre = strpos($_SERVER['HTTP_USER_AGENT'],"webOS");
$berry = strpos($_SERVER['HTTP_USER_AGENT'],"BlackBerry");
$ipod = strpos($_SERVER['HTTP_USER_AGENT'],"iPod");
if ($iphone || $android || $palmpre || $ipod || $berry == true)
{
header('Location: http://mobil.siten.com');
//OR
echo "<script>window.location='http://mobil.siten.com'</script>";
}
?>index.php ye veya ayarlar.php ye veya config.php ye en üstte
<?php include('user_agent.php'); // Redirecting http://mobile.site.info
// site.com data
?>Ekleyin.
user_agent'i olusturdum ancak diğerleri temada bulunmamakta. TUMEVA'nın scriptini kullaniyorum. Wordpress falan değil. Nasıl yapacağız ?