我正在一家在全州拥有多个地点的公司工作。我试图让他们在Google商家信息中排名更高。谷歌建议将RFDa插入索引页面。
有人知道您是否可以在索引页面上有多个RDFA描述所有位置?
答案 0 :(得分:1)
虽然我不确定Google是否支持它,但RDFa允许您在页面上包含任意数量的实体。为它们提供单独的标识符(about
属性)是个好主意,例如:
<div xmlns:v="http://rdf.data-vocabulary.org/#">
<p typeof="v:Organization" about="#helsinki">
<!-- Address of Helsinki office -->
</p>
<p typeof="v:Organization" about="#ny">
<!-- Address of New York office -->
</p>
</div>
如果将其放在地址http://example.net/
后面的页面上,则办公室的URI将为http://example.net/#helsinki
和http://example.net/#ny
,即使在同一页面上也是唯一的。