International SEO and hreflang: How to Rank in Multiple Countries
hreflang tells Google which version of your content to show which country and language. Here is the correct implementation, common mistakes, and how to monitor in GSC.
The hreflang attribute solves a specific problem: when you have the same content in multiple languages or country variants, how does Google know which version to show to which user?
Without hreflang, Google might show your French-language page to English speakers in Canada, or your US-market pricing page to users in the UK. With hreflang, you explicitly tell Google: "Show version A to English speakers in the US, version B to French speakers in France, and version C to English speakers in the UK."
hreflang does not boost rankings. It improves search result relevance by ensuring the correct variant appears for the correct audience.
Implementation Formats
There are three ways to implement hreflang, in order of preference:
1. HTML link element in head (recommended for most sites)
Missing reciprocal tags - The most common mistake. Every URL in your hreflang set must list all other variants. If page A lists page B as an alternate, page B must list page A as an alternate. Missing reciprocal tags cause Google to ignore the entire hreflang set.
Wrong language codes - Use valid ISO 639-1 language codes (en, fr, de, zh) and ISO 3166-1 alpha-2 country codes (US, GB, FR, CN). "english" and "usa" are wrong; "en-US" and "fr-FR" are correct.
Not including x-default - The x-default value specifies which URL to show when no other variant matches. Always include it, pointing to your default or most universal version.
Including noindex pages - Don't include redirected, noindexed, or canonicalized pages in hreflang. Only canonical, indexable URLs.
Different pages, not just different languages - All URLs in a hreflang set should represent the same content in different languages/regions - not different pages that happen to have similar topics.
GSC International Targeting Report
GSC has an International Targeting report (Settings → International Targeting) that shows:
Language tab - hreflang errors (missing reciprocal tags, unknown language codes, mismatched URLs)
Country tab - If you're using Search Console's country targeting setting (only applicable for subdomain or subdirectory implementations)
Review the Language tab regularly for hreflang errors across your site.
URL Structure Recommendations
ccTLD (country-code top-level domain) - example.fr, example.de. Strongest geo-targeting signal, but requires separate domain registration and management per country.
Subdomain - fr.example.com, de.example.com. Moderate geo-targeting signal, easier to manage than ccTLDs, but splits domain authority.
Subdirectory - example.com/fr/, example.com/de/. Weakest geo-targeting signal, but consolidates domain authority and is easiest to manage. Recommended for most teams starting with internationalization.
Combine your chosen URL structure with hreflang tags and the GSC International Targeting setting for the strongest signal combination.
Practical deep-dives on LLMs, developer tools, and AI engineering. No filler. Unsubscribe any time.
// written byFIG. AUTH-01
530
Mahmudul Haque Qudrati
CEO & ML Engineer
CEO and ML Engineer at Pristren. Builds AI-powered software for teams and writes about machine learning, LLMs, developer tools, and practical AI applications.
Page Speed Optimization in 2026: A Developer's Guide to LCP, CLS, and INP
A practical, code-level guide to optimizing all three Core Web Vitals - with specific techniques for LCP, CLS, and INP that you can implement this week.