2

我正在为客户的网站制作面包屑,我在问自己主页是否必须在其代码中。

那么,这样做更好吗:

通过链接到主页和当前

<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
    <a href="http://someclient.fr/" itemprop="url">
        <span itemprop="title">Accueil</span>
    </a>
    >
</div> 
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
    <a href="http://someclient.fr/annonces" itemprop="url">
        <span itemprop="title">Annonces</span>
    </a>
    > 
</div> 
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
    <a href="http://someclient.fr/annonces/category" itemprop="url">
        <span itemprop="title">Categorie</span>
    </a>
</div>
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
    <a href="http://someclient.fr/annonces/category/produit" itemprop="url">
        <span itemprop="title">Produit</span>
    </a>
</div>

没有指向主页和当前页面的链接

<a href="http://someclient.fr/" itemprop="url">Accueil</a> >
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
    <a href="http://someclient.fr/annonces" itemprop="url">
        <span itemprop="title">Annonces</span>
    </a>
    > 
</div> 
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
    <a href="http://someclient.fr/annonces/category" itemprop="url">
        <span itemprop="title">Category</span>
    </a>
</div>
<a href="http://someclient.fr/annonces/category/produit" itemprop="url">Produit</a>

您可以使用 Google 结构化数据测试工具 ( http://www.google.com/webmasters/tools/richsnippets )尝试此代码,您会看到我的第一个示例未呈现主页。

那么,最好的解决方案是什么?您如何为您的网站做些什么?

谢谢 !

4

1 回答 1

0

对于 seo,最好没有那个链接,因为您将有两个链接用于主页,另一个链接用于您所在的同一页面...

于 2013-09-04T13:10:35.230 回答