Answer the question
In order to leave comments, you need to log in
Breadcrumb markup without circular references?
We take from site example:
<ol itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/dresses">
<span itemprop="name">Dresses</span></a>
<meta itemprop="position" content="1" />
</li>
<li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/dresses/real">
<span itemprop="name">Real Dresses</span></a>
<meta itemprop="position" content="2" />
</li>
</ol>
Answer the question
In order to leave comments, you need to log in
create a .htaccess file in the root of the site, write the following in it:
# encoding Apache in UTF-8
AddDefaultCharset UTF-8
<ol itemscope itemtype="http://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope
itemtype="http://schema.org/ListItem">
<a itemprop="item" href="https://example.com/dresses">
<span itemprop="name">Dresses</span></a>
<meta itemprop="position" content="1" />
</li>
<li>Real Dresses</li>
</ol>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question