I kind of solved the problem. In the Cloudflare settings on wp rocket, you should turn off the item talking about the relative URL.
add_filter('wpseo_robots', 'yoast_no_home_noindex', 999);
function yoast_no_home_noindex($string= "") {
if (is_archive()) {
$string= "index,follow";
}
return $string;
}
I kind of found a solution. I don’t know if it’s correct, but it works.