Schema.org breadcrumbs with entry linking to a non-existing page (which redirects to the homepage)?

269 Views Asked by At

I am trying to organize my SERP and I want my site to display like this on SERP:

www.example.com > services > repair

But the problem is the "services" URL doesnt exist but 301 redirected to homepage.

<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"
        }
    }]
}

Will the above code work?

0

There are 0 best solutions below