ppoffice / hexo-theme-minos

A simple and retro styled Hexo theme, concentrated more on your ideas.
http://ppoffice.github.io/hexo-theme-minos
MIT License
765 stars 202 forks source link

能否给多语言页添加link标签的alternate属性 #79

Closed dengcb closed 5 years ago

dengcb commented 5 years ago

我看了下joomla的多语言页,有翻译页链接的属性,类似:

<link href="https://dengcb.com/about/index.html" rel="alternate" hreflang="en-GB" />
<link href="https://dengcb.com/zh/about/index.html" rel="alternate" hreflang="zh-CN" />

我希望在minos生成多语言页时,也顺便把这个属性加到head里,感觉对搜索引擎理解和收录大有好处。

dengcb commented 5 years ago

我试了下最新代码,发现默认语言的翻译属性多了个en: <link href="/en/about/index.html" rel="alternate" hreflang="en" /> 而我期望的是这样: <link href="/about/index.html" rel="alternate" hreflang="en" />