谷歌搜索关键词全部错误
我希望 stackoverflow 是提出此类问题的三位一体中正确的一部分......
Google 网站管理员工具显示了它认为对我的博客 (blog.schauderhaft.de) 重要的关键字。但前 20% 都是月份名称(你知道一月等等)。
我实际上对此有一个由两部分组成的问题:
- 为什么谷歌认为这些是重要的关键词?
- 我该如何解决这个问题?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可能与页面头部的整个档案列表有关:
等等。
您认为这实际上会成为问题吗? 这些人似乎并不这么认为..
It might have something to do with the whole list of archives in the head of your page:
<link rel='archives' title='January 2008'
and so on.Do you think this will actually be a problem? These people don't seem to think so..
我们曾经在我们的一个客户网站上遇到过一个大问题,类似的问题国家/地区名称似乎最重要。在某些页面上,我们运行了多种表格,人们可以在其中选择一个国家/地区。谷歌到处都发现了这一点,因此认为它很重要。
因此,如果您的档案/文章日期中有月份名称,那么很有可能。如果是日期,您必须确保正确标记每个日期,您可以使用 HTML5 代码来识别它是日期;否则,如果是存档,您可以使用 AJAX 加载它;或者使用 javascript 计算它。
为了删除国家/地区名称,我们必须使用 jQuery 技巧在页面加载后将它们动态插入到页面中。 (因此谷歌不再认为该列表对我们的网站很重要)
We used to have a big problem on one of our client websites with a similar problem country names appearing most important. On some pages we were running multiple forms where one could choose a country. Google was finding this all over the place and thus considered it important.
So if you have month names in archives/in dates of articles it might very well be a possibility. You have to ensure you tag each one properly if its a date you can maybe use the HTML5 code to identify that its a date; otherwise in case of archives what you can do is load this using AJAX; or calculate it using javascript.
In order to drop the counry names we had to use a jQuery trick to insert these dynamically into the page following page load. (so google no longer sees the list as important to our website)