siteye mobilden girildiğinde mobil uyumlu sayfaya yönlendirme
index sayfasına eklenecek kod
<?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"); // kontrol ve yönlendirme
if ($iphone || $android || $palmpre || $ipod || $berry == true) {
header('Location: mobil.php'); //yada
echo "<script>window.location='mobil.php'</script>";
}
?>
mobil sayfanıza eklenecek kod
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Yorumlar
Yorum Gönder