# Link related topics using link-tag for better helping search engines

**URL:** https://meta.discourse.org/t/link-related-topics-using-link-tag-for-better-helping-search-engines/234566
**Category:** Feature
**Created:** [July 31, 2022, 8:59am UTC](https://meta.discourse.org/t/link-related-topics-using-link-tag-for-better-helping-search-engines/234566 "2022-07-31T08:59:43Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![guidoleenders](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/guidoleenders/32/196268_2.png) [@guidoleenders](https://meta.discourse.org/u/guidoleenders)
#### Post date: [July 31, 2022, 8:59am UTC](https://meta.discourse.org/t/link-related-topics-using-link-tag-for-better-helping-search-engines/234566/1 "2022-07-31T08:59:43Z")

</div>

On our forums we have segmented Dutch and English across a range of categories. Each category has a primary language and moderators make sure the content is moved when landing in the wrong language’s category.

For the content written in wiki’s, there is often a need for an English and Dutch version. Therefore, for each language content is developed and put online. Example:

> **[Bepaal Autotask API-gebruiker en wachtwoord voor Power BI connector en SQL](https://forums.invantive.com/t/bepaal-autotask-api-gebruiker-en-wachtwoord-voor-power-bi-connector-en-sql/2592)**
>
> Go to English version Alle Autotask API’s zijn beschikbaar met Power BI op Invantive Cloud en met Invantive SQL op Invantive Query Tool, Invantive Data Hub, Invantive Control voor Excel, Invantive Composition voor Word en Invantive Data...

This Dutch content has an English variant with similar information for an English-reading user population:

> **[Determine Autotask API user and password for Power BI connector and SQL](https://forums.invantive.com/t/determine-autotask-api-user-and-password-for-power-bi-connector-and-sql/1517)**
>
> Go to Dutch version All Autotask API’s are available with Power BI on Invantive Cloud and with Invantive SQL on Invantive Query Tool, Invantive Data Hub, Invantive Control for Excel, Invantive Composition for Word and Invantive Data Replicator. ...

The two topics are linked for user navigation (and workarounds for SEO issues on Bing and Google, see [Missing HTML meta-tag "Content-Language" for BING language detection](https://meta.discourse.org/t/missing-html-meta-tag-content-language-for-bing-language-detection/234565) and [Language support on category level for more relevant search results](https://meta.discourse.org/t/language-support-on-category-level-for-more-relevant-search-results/234564)) by a hyperlink at the start of the text: “Go to LANGUAGE version”

However, there is currently no structured way in Discourse to tell search engine that two topics actually serve the same information but in a different language. This makes it harder for search engines to present content in the searcher’s language, plus each individual page has to build it’s own page authority, instead of them being summed together.

On another site we therefore have on each page (and sitemaps) included `link`-HTML tags to help search engines understand the structure as documented on [Localized Versions of your Pages | Google Search Central &nbsp;|&nbsp; Documentation &nbsp;|&nbsp; Google for Developers](https://developers.google.com/search/docs/advanced/crawling/localized-versions) :

```html
<link rel="alternate" hreflang="nl" href="https://cloud.invantive.com/nl/autotask" />
<link rel="alternate" hreflang="en" href="https://cloud.invantive.com/en/autotask" />
<link rel="alternate" hreflang="de" href="https://cloud.invantive.com/de/autotask" />
<link rel="alternate" hreflang="fr" href="https://cloud.invantive.com/fr/autotask" />
<link rel="alternate" hreflang="es" href="https://cloud.invantive.com/es/autotask" />
<link rel="alternate" hreflang="it" href="https://cloud.invantive.com/it/autotask" />
<link rel="alternate" hreflang="da" href="https://cloud.invantive.com/da/autotask" />
<link rel="alternate" hreflang="nb" href="https://cloud.invantive.com/nb/autotask" />
<link rel="alternate" hreflang="sv" href="https://cloud.invantive.com/sv/autotask" />
<link rel="alternate" hreflang="fi" href="https://cloud.invantive.com/fi/autotask" />
<link rel="alternate" hreflang="pt" href="https://cloud.invantive.com/pt/autotask" />
<link rel="alternate" hreflang="ja" href="https://cloud.invantive.com/ja/autotask" />
<link rel="alternate" hreflang="x-default" href="https://cloud.invantive.com/nl/autotask" />
<link rel="canonical" href="https://cloud.invantive.com/nl/autotask" />

```

This is not uncommon, such as Apple does:

```html
<link rel="alternate" href="https://www.apple.com/" hreflang="en-US" />
<link rel="alternate" href="https://www.apple.com/ae-ar/" hreflang="ar-AE" />
<link rel="alternate" href="https://www.apple.com/ae/" hreflang="en-AE" />
...a stunning 140 languages...
<link rel="alternate" href="https://www.apple.com/vn/" hreflang="en-VN" />
<link rel="alternate" href="https://www.apple.com/za/" hreflang="en-ZA" />
<link rel="alternate" href="https://www.apple.com.cn/" hreflang="zh-CN" />

```

It would be helpful when topics could be linked to instruct search engines for their structure. This could include language links like above on `alternate`.
