seo - RDFa 面包屑在 Google SERP 中未按预期工作

标签 seo breadcrumbs rich-snippets rdfa google-rich-snippets

与 URL View 相比,结构化数据测试工具是否曾在 HTML View 中显示不同的 RDF 面包屑片段?

对我的页面使用 URL View 时,例如 www.springboardseo.com/resources/what-is/robots-txt.html 片段显示为:www.springboardseo.com › 资源 › 词汇表 › R :however,

当使用 HTML View 时,粘贴整个页面的 html,片段会正确显示,如:www.example.com › Resources › Glossary › R › Robots.txt

我在页面上的标记是:

<div xmlns:v="http://rdf.data-vocabulary.org/#">
   <span typeof="v:Breadcrumb">
     <a href="http://www.springboardseo.com/" rel="v:url" property="v:title">
      Home
    </a> ›
   </span>
   <span typeof="v:Breadcrumb">
    <a href="http://www.springboardseo.com/resources/" rel="v:url" property="v:title">
      Resources
    </a> ›
   </span>
   <span typeof="v:Breadcrumb">
      <a href="http://www.springboardseo.com/resources/glossary/" rel="v:url" property="v:title">
        Glossary
    </a> ›  
   </span>
   <span typeof="v:Breadcrumb">
      <a href="http://www.springboardseo.com/resources/glossary/r.html" rel="v:url" property="v:title">
        R
    </a> ›  
   </span>
   <span typeof="v:Breadcrumb" class="breadcrumbDest">
      <a href="http://www.springboardseo.com/resources/what-is/robots-txt.html" rel="v:url" property="v:title">
        Robots.txt
    </a>
   </span>
</div>

最佳答案

我的猜测是,在 HTML 模式下,它纯粹是在查看代码的含义。

这与它在 SERPS 中解释信息的方式完全不同。

其中大部分将基于用户查询。

例如,如果用户搜索“robots.txt”,他们会在页面标题中看到 Robots.txt。

因此,面包屑不需要包含用户查询,因为它们最好显示在 SERPS 中的实际标题中。

但是,如果他们搜索恰好在此页面上提到的相关术语,并且可以以更相关的方式来匹配他们的查询,他们可能会显示面包屑的 robots.txt 部分。

简单来说,如果他们专门搜索 robots.txt,Google 会在标题中显示它,如果他们正在搜索类似的内容,但有更合适的标题,他们会在标题中显示 robots.txt面包屑。

关于seo - RDFa 面包屑在 Google SERP 中未按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23174208/

相关文章:

html - Google Rich Snippets 为一位作者工作,但不为另一位作者工作

c# - 从服务器生成的元数据是否可从爬虫和机器人读取?

language-agnostic - 用于搜索表单的 seo

magento - Magento-如何替换面包屑中的“主页”?

microdata - 同一项目的单独丰富代码片段范围

html - 在页面加载后创建的元素上使用微数据

javascript - AJAX SEO(重新 : faceted search w/URL hashed state )

ajax - Google console fetch & render 确实显示 AJAX 获取的内容

python-sphinx - Sphinx 配置如何设置 "breadcrumbs"?

ios - MKOverlay 路线在 Apple Breadcrumb iOS 代码中工作,但在我的应用程序中不起作用