Alt sayfalarda yönlendirme yapan kod index sayfasında çalışmıyor. Kod aynen aşağıdaki gibi. Başka bir hosting'de çalışıyor. sorun yok.
index;
$mobile = $_SERVER['HTTP_USER_AGENT'];
$iphone = strpos($mobile,"iPhone");
$android = strpos($mobile,"Android");
$ipod = strpos($mobile,"iPod");
if ($iphone == true || $android == true || $ipod == true) {
header('Location: http://xxx.com.tr/m/');
}alt sayfalarda ki;
$mobile = $_SERVER['HTTP_USER_AGENT'];
$iphone = strpos($mobile,"iPhone");
$android = strpos($mobile,"Android");
$ipod = strpos($mobile,"iPod");
if (($iphone == true || $android == true || $ipod == true) AND ($mdurum == "e" || $mdurum == "j" || $mdurum == "t")) {
header('Location: http://xxx.com.tr/m/');
}Yardımcı olacak arkadaşlara teşekkürler.