如何更好地让搜索引擎识别网站上的结构化数据

最近,雅虎联合微软google发布了 schema.org,以期改进对于网站中的结构化数据的遍历,进而增强其对于结构化数据的索引。

更详细的可以参考cnbeta 上的介绍: http://www.cnbeta.com/articles/144632.htm, 或者直接参考官方网站: http://schema.org

另外对于改进后的网页,可以使用 google提供的站长工具来测试结构化数据的正确性: http://www.google.com/webmasters/tools/richsnippets

对于blog,这儿提供一个最简单的例子:

<div itemscope itemtype='http://schema.org/Blog'>

     <h3 itemprop='name'>Hello world</h3>

    <div itemprop='description'>blog content</div>

    <div>Author: <span itemprop='author'>guoxiaod</span></div>

    <div>Published: <time itemprop='datePublished' datetime='2011-06-03'>2011-06-03</time></div>

    <div>Url:<a href='http://www.example.com' itemprop='url'>http://www.example.com</a>

</div>

This article is posted by on , link is .

Leave a reply