What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 5 questions

Less than a minute. Find out how much you really know about Google search.

🕒 ~1 min 🎯 5 questions

Official statement

There is no negative impact from using relative links instead of absolute links. Both types are acceptable to Google.
16:34
🎥 Source video

Extracted from a Google Search Central video

⏱ 1h13 💬 EN 📅 26/06/2017 ✂ 26 statements
Watch on YouTube (16:34) →
Other statements from this video 25
  1. 4:51 Pourquoi Google ne garantit-il aucune augmentation des featured snippets ?
  2. 5:48 Comment Googlebot calcule-t-il réellement votre budget de crawl ?
  3. 8:04 HTTP vs HTTPS sans redirection : comment Google gère-t-il vraiment le duplicate content ?
  4. 8:45 Le JavaScript explose-t-il vraiment votre budget de crawl ?
  5. 10:26 Google utilise-t-il vraiment vos meta descriptions dans les snippets de recherche ?
  6. 12:10 Pourquoi les balises rel='next' et rel='prev' échouent-elles sur des pages en noindex ?
  7. 12:16 Peut-on vraiment combiner rel=next/prev et noindex sans perdre son crawl budget ?
  8. 13:54 Google fusionne-t-il vraiment HTTP et HTTPS en une seule URL canonique ?
  9. 14:20 Les liens dans les menus déroulants sont-ils vraiment crawlés par Google ?
  10. 14:20 Les menus déroulants sont-ils vraiment crawlés comme n'importe quel lien interne ?
  11. 15:06 Les liens site-wide sont-ils vraiment sans danger pour votre SEO ?
  12. 15:11 Les liens site-wide pénalisent-ils vraiment votre référencement ?
  13. 16:06 Faut-il vraiment optimiser ses meta descriptions si Google les réécrit ?
  14. 16:16 Liens internes relatifs ou absolus : y a-t-il vraiment un impact SEO ?
  15. 17:31 Les featured snippets de mauvaise qualité révèlent-ils une faille algorithmique de Google ?
  16. 20:00 Rel=next/prev fonctionne-t-il encore avec des pages en noindex ?
  17. 24:11 Les snippets en vedette vont-ils vraiment s'étendre au-delà des définitions ?
  18. 28:12 Google corrige-t-il manuellement les résultats de recherche grâce aux signalements internes ?
  19. 28:16 Les rich cards sont-elles vraiment déployées de manière égale dans tous les pays ?
  20. 30:40 Google indexe-t-il vraiment le contenu de vos iframes ?
  21. 35:15 Votre budget de crawl fuit-il par des URLs inutiles ?
  22. 38:04 Faut-il vraiment créer une URL distincte pour chaque filtre produit en e-commerce ?
  23. 48:11 Que se passe-t-il si votre fichier robots.txt est bloqué ou inaccessible ?
  24. 48:27 Google indexe-t-il vraiment le JavaScript ou faut-il s'en méfier ?
  25. 52:57 Google indexe-t-il vraiment le JavaScript comme n'importe quelle page HTML ?
📅
Official statement from (8 years ago)
TL;DR

Google confirms that there is no negative impact from using relative links compared to absolute links. Both formats are treated equally by the engine. This technical neutrality allows SEOs to choose based on their infrastructure constraints rather than ranking criteria.

What you need to understand

What is the technical difference between a relative link and an absolute link?

An absolute link contains the full URL with protocol and domain: https://example.com/page.html. In contrast, a relative link only indicates the path from the root of the site: /page.html or from the current directory: ../page.html.

This distinction has fueled debates among practitioners for a long time. Some argued that absolute links facilitate crawling, while others claimed that relative links optimize processing time. Google puts an end to this speculation with a clear stance.

Why does this question frequently arise in SEO discussions?

The debate originates from legitimate technical considerations. Absolute links avoid resolution errors during migrations or complex setups. They ensure that each link points exactly where it should, regardless of structural changes.

Relative links offer more flexibility in a development environment. Moving a site between staging and production requires no modification of internal URLs. This practicality has attracted many developers, but raised concerns among some SEOs who feared a loss of signal.

How does Google handle these two types of links during crawling?

The Google crawler resolves relative links into absolute URLs before processing them. This normalization process occurs instantly, with no impact on crawl speed or structure analysis. Resolution relies on the <base> tag if it exists; otherwise, it uses the current page's URL.

Once normalized, links enter the same processing pipeline. There is no ranking differentiation based on the original format. PageRank circulates identically, the anchor text retains the same weight, and the link's position in the DOM holds the same value.

  • Confirmed neutrality: no SEO advantage in favoring one format over another
  • Automatic resolution: Google normalizes relative links to absolute ones without loss of signal
  • Technical flexibility: choice depends on infrastructure constraints, not SEO
  • Crawl equivalence: both types are discovered and followed with the same efficiency
  • Identical PageRank transmission: SEO juice circulates without difference based on format

SEO Expert opinion

Does this stated neutrality hide problematic edge cases?

Mueller's statement is technically correct in 99% of standard configurations. However, it simplifies a reality that can be more nuanced. On sites with complex architectures or specific server configurations, relative links can create ambiguous resolutions that Google must interpret.

I have observed on multilingual sites with subdomains situations where relative links created unintended cross-references. A link /contact from fr.example.com/blog/article might be resolved differently depending on whether a <base> tag is present. Google manages these cases, certainly, but with an additional processing cost. [To be verified] if this cost affects the crawl budget on sites with millions of pages.

Do absolute links offer indirect SEO benefits?

Even though Google treats both formats equivalently, absolute links facilitate scraping and syndication. When your content is published elsewhere, absolute links continue to point to your site. Relative links become orphaned or point to the scraper's domain.

This consideration lies outside the strict scope of Google crawling but impacts your backlink profile. A viral article with absolute links generates exploitable citations. With relative links, you lose opportunities for natural link building. This is a collateral effect that Mueller does not mention in his statement.

In what scenarios do relative links become risky?

Environments that are accessible by Google for testing represent the first danger. If your staging uses relative links and Google accidentally accesses it, all internal links point to that subdomain. You create a duplicate version with consistent internal linking that competes with your production.

CDNs and reverse proxies present a second point of caution. Some configurations rewrite URLs unpredictably. A relative link might be resolved with the CDN's domain rather than the original one. Absolute links ensure that each link retains its target domain, regardless of the intermediate layers.

Warning: On sites with multiple protocols (mixed HTTP/HTTPS) or multiple domain versions (www/non-www), relative links inherit the protocol and domain of the parent page. This propagation may strengthen non-canonical versions if your configuration is not strictly locked down.

Practical impact and recommendations

What should you implement practically on an existing site?

If your site already uses a consistent format, no corrective action is necessary. Google treats both types interchangeably. Investing development time to convert thousands of relative links to absolute links will yield no ranking gain.

However, if your internal linking mixes both formats inconsistently, prioritize standardization. Not for SEO reasons, but to ease maintenance, migrations, and debugging. Clean code reduces the risk of errors during redesign or CMS changes.

How should you choose the format for a new project?

For a simple blog or a showcase site, relative links simplify local development and multi-environment deployments. You can test on localhost without rewriting URLs, then deploy to production without modification.

For a complex site with CDN, multilingual, or multi-domain, absolute links offer more security. They eliminate resolution ambiguities and ensure that each link points directly to the canonical domain. This approach is particularly relevant if you plan on content syndication or if your site is at risk of being scraped.

What technical verifications are necessary regardless of the chosen format?

Systematically test the effective resolution of your internal links with a crawler like Screaming Frog. Ensure all links lead to the expected canonical URLs, without unnecessary redirects or 404 errors. This validation is independent of the relative or absolute format.

Make sure your <base> tag is properly configured if you are using relative links. A misconfigured or missing base tag on certain pages can lead to incorrect resolutions that Google will have to correct. It is better to control this parameter than to leave the engine to interpret it.

  • Audit the internal linking to identify the formats used and detect inconsistencies
  • Standardize on a single format if you are launching a redesign or migration
  • Check that the <base> tag is present and correct if you choose relative links
  • Test the resolution of links in staging environment before production deployment
  • Ensure that canonical URLs are respected after relative link resolution
  • Monitor crawl logs for any potential massive resolution errors
The choice between relative and absolute links depends on technical architecture rather than pure SEO optimization. Google treats both formats equivalently. Prioritize consistency and maintainability of your code. If your infrastructure presents complex specifics (multilingual, CDN, multiple environments), a specialized SEO agency can audit your configuration and recommend the most suitable format for your context, while avoiding technical pitfalls that could harm your crawlability.

❓ Frequently Asked Questions

Les liens relatifs ralentissent-ils le crawl de Google ?
Non. Google résout les liens relatifs en absolus instantanément lors du traitement de la page. Ce processus de normalisation n'ajoute aucun délai significatif et ne consomme pas de crawl budget supplémentaire.
Faut-il convertir tous mes liens relatifs en absolus suite à cette déclaration ?
Non, aucune conversion n'est nécessaire. Si votre site fonctionne correctement avec des relatifs, les modifier n'apportera aucun gain SEO. Investissez plutôt votre temps sur des optimisations à impact réel.
La balise base est-elle obligatoire avec des liens relatifs ?
Non, mais elle clarifie la résolution. Sans balise base, Google utilise l'URL de la page courante comme référence. Une balise base bien configurée élimine toute ambiguïté, particulièrement sur des sites avec URLs complexes.
Les liens absolus transmettent-ils plus de PageRank que les relatifs ?
Non. Une fois normalisés, les deux types de liens transmettent exactement la même quantité de PageRank. Le format n'influence ni le poids du lien ni sa valeur pour le ranking.
Peut-on mélanger liens relatifs et absolus sur un même site ?
Techniquement oui, Google traitera les deux sans problème. Cependant, pour des raisons de maintenance et de cohérence du code, il est préférable de standardiser sur un seul format à l'échelle du site.
🏷 Related Topics
Links & Backlinks Pagination & Structure

🎥 From the same video 25

Other SEO insights extracted from this same Google Search Central video · duration 1h13 · published on 26/06/2017

🎥 Watch the full video on YouTube →

Related statements

💬 Comments (0)

Be the first to comment.

2000 characters remaining
🔔

Get real-time analysis of the latest Google SEO declarations

Be the first to know every time a new official Google statement drops — with full expert analysis.

No spam. Unsubscribe in one click.