This page's hreflang points to a French target that has a noindex meta tag.
meta name="robots" content="noindex"Hreflang says: "Show French users this French page"
Noindex says: "Do not index this French page"
These directives conflict!
Check: hreflang (automatic)
Status: Fail
Severity: Warning
Issue Type: hreflang_target_noindex
Choose one of these solutions:
// French target page - Remove noindex:
export const metadata = {
title: "...",
description: "...",
// ✅ No robots: "noindex" directive
alternates: {
canonical: "https://example.com/fr/page",
languages: { ... }
}
}Never point hreflang to pages with noindex directives.
Hreflang is for telling search engines about indexable language variants. Noindex prevents indexing. These are incompatible.