0

会用下面的代码,给我一些SEO问题吗?当我开始使用它时,我的 Google 排名下降了。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="refresh" content="0;document.location" />
</head>
<body>
<p></p>
<!--?xml version="1.0" encoding="UTF-8"?-->
<p><link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /></p>
<title></title>
<script language="javascript" type="text/javascript">// <![CDATA[
if (screen.width <= 699) {
document.location = "http://mobilesite";
}

else{ 
       document.location.href = "http://desktopsite"
}
// ]]></script>
</body>

</html>
4

1 回答 1

1

我认为您首先需要学习 HTML 结构。

favicon 包含和标题应始终包含在<head>容器中。

不知道为什么你在他们的任何一个中有一个 XML 声明。

您也可以使用 HTML5 文档类型<!doctype html>

关于 SEO 问题。内容为王。搜索引擎主要处理页面中包含的内容。现在我不确定你的 JS 将如何影响这一点,因为爬取页面的蜘蛛和机器人不运行 JavaScript(我可能是错的,如果是这样的话,希望有人能纠正我)。

于 2013-01-19T10:51:16.563 回答