Forums
(@so1omon)
3 years, 3 months ago
I kind of solved the problem. In the Cloudflare settings on wp rocket, you should turn off the item talking about the relative URL.
3 years, 5 months ago
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.