gpt4 book ai didi

internationalization - Nuxt 和 i18n : Google showing mixed language results

转载 作者:行者123 更新时间:2023-12-04 09:10:20 27 4
gpt4 key购买 nike

我用 Nuxt 做了一个网站。

该网站有 2 种语言:意大利语(默认)和英语。我安装了 nuxt-i18n 并对其进行了配置,一切似乎都运行良好(尤其是在使用 devtools、html lang、rel=alternate 等查看代码时......)。

但这就是问题所在:当我使用谷歌(意大利语)搜索网站时,SERP 中的网站片段是英文的。

这是我的代码:

    ['nuxt-i18n', {
seo: false,
baseUrl: 'https://www.leconturbanti.it',
locales: [
{
name: 'Italiano',
code: 'it',
iso: 'it-IT',
file: 'it-IT.js'
},
{
name: 'English',
code: 'en',
iso: 'en-US',
file: 'en-US.js'
},
],
pages: {
'contatti/index': {
it: '/contatti',
en: '/contact-us'
},
'illustrazioni-collezione/index': {
it: '/illustrazioni-collezione',
en: '/illustrations-capsule'
}
},
langDir: 'lang/',
parsePages: false,
defaultLocale: 'it',
lazy: true
}]

如文档中所述,我设置了 seo: false 以获得更好的性能,并将数据合并到默认布局中:

    head(){
return{
script:[
{type: `text/javascript`, innerHTML: this.$t('policy.cookieId')},
{src: `//cdn.iubenda.com/cs/iubenda_cs.js`, charset: `UTF-8`, type: `text/javascript`}
],
__dangerouslyDisableSanitizers: ['script'],
...this.$nuxtI18nSeo()
}
},

我还在 head() 中使用 $t 为每个页面设置元标记。例如,在家里:

    head(){
return{
title: this.$t('seo.home.title'),
meta: [
{ hid: 'description', name: 'description', content: this.$t('seo.home.description')},
{ hid: 'og:title', property: 'og:title', content: this.$t('seo.home.title') },
{ hid: 'og:url', property: 'og:url', content: this.$t('seo.home.url') },
{ hid: 'twitter:title', property: 'twitter:title', content: this.$t('seo.home.title') },
{ hid: 'og:description', property: 'og:description', content: this.$t('seo.home.description') },
{ hid: 'twitter:description', property: 'twitter:description', content: this.$t('seo.home.description') },
]
}
},

我不明白我做错了什么。我已经在 Search Console 中添加了网站。如需上门查看,网址为:www.leconturbanti.it

如果您需要我的更多代码才能回答,请询问。谢谢。

最佳答案

发现这个问题来自 nuxt-i18n 本身。问题是 Google 爬虫将回退到页面的英文版本,如果您默认使用其他语言环境,这就不好了。 More here.

目前,在问题解决之前,我使用的解决方法是禁用自动检测语言以避免使用 detectBrowserLanguage: false 进行重定向。

关于internationalization - Nuxt 和 i18n : Google showing mixed language results,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63359724/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com