面包屑導(dǎo)航可幫助網(wǎng)站訪客根據(jù)層次結(jié)構(gòu)、用戶軌跡或兩者確定訪客在站點內(nèi)的當(dāng)前位置。在本指南中,我們將討論面包屑導(dǎo)航的類型以及最佳實施方法和一些常見錯誤。
什么是面包屑導(dǎo)航?
Home > Furniture > Tables > Kitchen Table
何時使用面包屑導(dǎo)航?
如何實現(xiàn)面包屑導(dǎo)航
Home > Furniture > Tables > Kitchen Table
<a href="/">Home</a> >
<a href="/furniture/">furniture</a> >
<a href="/furniture/tables/">Tables</a> > Kitchen Table
用簡單的字符分開
結(jié)構(gòu)化數(shù)據(jù)和面包屑
面包屑導(dǎo)航中可用的結(jié)構(gòu)化數(shù)據(jù)屬性
使用微數(shù)據(jù)的面包屑標(biāo)記示例
Home > Furniture > Kitchen
<ol itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" >
<span itemprop="name">Home</span></a>
<span itemprop="position" content="1">></span>
</li>
<li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" >
<span itemprop="name">Furniture</span></a>
<span itemprop="position" content="2">></span>
</li>
<li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" >
<span itemprop="name">Kitchen</span></a>
<span itemprop="position" content="3"></span>
</li>
</ol>
使用 RDFa 的面包屑標(biāo)記示例
Home > Furniture > Kitchen
<ol vocab="http://schema.org/" typeof="BreadcrumbList">
<li property="itemListElement" typeof="ListItem">
<a property="item" typeof="WebPage"
>
<span property="name">Home</span></a>
<span property="position" content="1">></span>
</li>
<li property="itemListElement" typeof="ListItem">
<a property="item" typeof="WebPage"
>
<span property="name">Furniture</span></a>
<span property="position" content="2">></span>
</li>
<li property="itemListElement" typeof="ListItem">
<a property="item" typeof="WebPage"
>
<span property="name">Kitchen</span></a>
<span property="position" content="3"></span>
</li>
</ol>
使用 JSON-LD 的面包屑標(biāo)記示例
Home > Furniture > Kitchen
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "https://example.com/",
"name": "Home"
}
},{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://example.com/furniture/",
"name": "Furniture"
}
},{
"@type": "ListItem",
"position": 3,
"item": {
"@id": "https://example.com/furniture/kitchen/",
"name": "Kitchen"
}
}]
}
</script>
如何測試您的結(jié)構(gòu)化數(shù)據(jù)實施
面包屑導(dǎo)航的類型
關(guān)于面包屑的技術(shù)思考
一致和不一致的面包屑導(dǎo)航
一致的面包屑導(dǎo)航示例
home > furniture > kitchen
home > furniture > kitchen > kitchen table
不一致的面包屑導(dǎo)航示例
home > furniture > kitchen
home > products > kitchen table xy
具有多分類架構(gòu)的一致面包屑導(dǎo)航示例
home > furniture > kitchen > tables > kitchen table xy
home > products > kitchen table xy
唯一的還是多個 URL?
示例:?唯一URL
http://example.com/furniture/kitchen/
http://example.com/furniture/tables/
http://example.com/procuct/kitchen-table-xy
示例:?不同分類的多個URL
http://example.com/furniture/kitchen/
http://example.com/furniture/tables/
http://example.com/furniture/kitchen/kitchen-table-xy
http://example.com/furniture/tables/kitchen-table-xy
用戶路徑與面包屑導(dǎo)航同步
home > kitchen > featured items > kitchen table xy
home > kitchen > Best Tables Inc > kitchen table xy
home > products > kitchen table xy
面包屑的概念差異
基于位置的面包屑導(dǎo)航
http://example.com/tables/kitchentable-oak/
Home > tables > kitchen table oak
基于屬性的面包屑導(dǎo)航
http://example.com/tables/kitchentable-oak/
Home > oak > large > kitchen table oak
混合面包屑導(dǎo)航
http://example.com/tables/kitchentable-oak/
Home > furniture > kitchen > tables > oak (x) > large (x) > kitchen table oak
基于路徑的面包屑導(dǎo)航
http://example.com/tables/kitchentable-oak/
Best kitchen furniture > tables > oak > tables > kitchen table oak
實用的解決方案
技術(shù)觀點
概念觀點
實踐面包屑的最佳方法
面包屑可降低爬行級別數(shù)
面包屑導(dǎo)航的層級架構(gòu)
Home |
1級 |
2級 |
3級 |
4級 |
5級 |
6級 |
|
之前的 |
0 |
1 |
2 |
3 |
4 |
5 |
6 |
之后的 |
0 |
1 |
2 |
2 |
2 |
2 |
1 |
面包屑搜索結(jié)果片段
Home > … > Kitchen > Tables
Home > … > oak > large
分頁和面包屑導(dǎo)航
Home > Furniture > Kitchen > Tables > Page 3
面包屑導(dǎo)航的常見錯誤
使用短面包屑進行深層站點結(jié)構(gòu)
在網(wǎng)站標(biāo)題中使用反向面包屑導(dǎo)航
面包屑常見問題解答
我應(yīng)該在面包屑導(dǎo)航中鏈接主頁嗎?
我應(yīng)該在面包屑導(dǎo)航中顯示當(dāng)前項嗎?
我應(yīng)該鏈接面包屑導(dǎo)航中的當(dāng)前項嗎?
文章為作者獨立觀點,不代表DLZ123立場。如有侵權(quán),請聯(lián)系我們。( 版權(quán)為作者所有,如需轉(zhuǎn)載,請聯(lián)系作者 )

網(wǎng)站運營至今,離不開小伙伴們的支持。 為了給小伙伴們提供一個互相交流的平臺和資源的對接,特地開通了獨立站交流群。
群里有不少運營大神,不時會分享一些運營技巧,更有一些資源收藏愛好者不時分享一些優(yōu)質(zhì)的學(xué)習(xí)資料。
現(xiàn)在可以掃碼進群,備注【加群】。 ( 群完全免費,不廣告不賣課!)