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?