gpt4 book ai didi

php - Javascript document.write(metadata) 对 SEO 有效吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:41:14 25 4
gpt4 key购买 nike

<分区>

我正在用多种语言构建一个网站。我所做的是检索浏览器语言,然后使用它相应地生成元标记。

这个文件将包含在我的所有页面中:(我需要包含它,因为标题变体是用 php 存档的)

    <script type="text/javascript">

function getLang(){
return navigator.language || navigator.userLanguage;
}

var lang = getLang().substring(0,2);

switch (lang) {
case "es":
document.write('<title>Title in spanish.</title>');
document.write('<meta http-equiv="Content-Language" content="'+getLang()+'"/>');
document.write('<meta name="Keywords" content="keywords in spanish"/>');
document.write('<meta name="Description" content="Desciption in spanish"/>');
break;
case "fr":
//same in french
break;
default:
//same in english for any other language
}

</script>

<meta name="Distribution" content="global"/>
<meta name="Robots" content="all"/>
<meta name="author" content="Me">
<meta charset="UTF-8">
<meta http-equiv="refresh" content="30">

这是对 SEO 有效的陈述吗?如果不是,我该怎么做?

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