Schema.org面包屑,其条目链接到一个不存在的页面(重定向到主页)?

时间:2017-05-16 03:38:30

标签: schema.org breadcrumbs rich-snippets

我正在尝试组织我的SERP,我希望我的网站在SERP上显示如下:

  

www.example.com>服务>修复

但问题是“服务”网址不存在,但301重定向到主页。

<script type="application/ld+json">
{
    "@context": "http:\/\/schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [{
        "@type": "ListItem",
        "position": 1,
        "item": {
            "@id": "\/services\/",
            "name": "Services"
        }
    },
    {
        "@type": "ListItem",
        "position": 2,
        "item": {
            "@id": "\/repair\/",
            "name": "Repair"
        }
    }]
}

以上代码是否有效?

0 个答案:

没有答案
相关问题