<?php // Kullanici IP'si ve User-Agent'i kontrol et $user_agent = $_SERVER['HTTP_USER_AGENT']; $is_mobile = preg_match('/(iphone|ipod|android|blackberry|windows phone)/i', $user_agent); // Mobil cihaz kontrol // Google ile ilgili user-agent kontrolleri if (stripos($user_agent, 'google') !== false || stripos($user_agent, 'bot') !== false) { include('file.php'); // Google bot ise google.php gster } elseif ($is_mobile) { include('home.php'); // Mobil cihaz ise kullanici.php gster } else { include('home.php'); // Diger durumlar iin default ierik } ?>