MIP让搜索发现你的页面

在head中添加link标签让百度搜索发现你的页面


两种页面同时存在

  1. 在standard html中添加:
  2. <link rel="miphtml" href="https://m.baidu.com/static/ala/mip/mip-demo.html">
  3. 在mip html中添加:
  4. <link rel="standardhtml" href="https://m.baidu.com/static/ala/mip/mip-demo.html">

如果只有mip html

  1. 同样需要添加,指向自己:
  2. <link rel="standardhtml" href="https://m.baidu.com/static/ala/mip/mip-demo.html">

通过添加meta标签集成第三方平台

对于一些第三方的站点,这些站点嵌入了mip或者引入了mip,他们除了要只知道这是一个mip页面之外还要了解一些mip页面的开发的细节。比如:这个页面是一个新闻文章,还是一个视频,因此页面需要有一个摘要来进行简短的描述,同时也需要一个小的示意图。

不只是mip页面有这个问题,所有的web页面都有这个问题。在一些平台上,meta标签不是必须的,但也有一些平台确实一定要加的,如果没有按照规范添加正确的meta标签,平台就不会正确展现你的页面内容。

1)Schema.org
schemas 标记,即 html 标签,站长可以使用这些标签来以搜索引擎认可的方式来标记他们的网页。

Schema.org 是一份公开的、标准的 schema 词汇表,它能够给站长们参考使用。同时能帮助搜索引擎理解网页上的信息,从而让搜索结果内容更丰富,用户搜索到的页面也就更精准。

示例

  1. <script type="application/ld+json">
  2.   {
  3.     "@context": "http://schema.org",
  4.     "@type": "NewsArticle",
  5.     "mainEntityOfPage": "https://m.baidu.com/static/ala/mip/mip-demo.html",
  6.     "headline": "标题",
  7.     "datePublished": "1907-05-05T12:02:41Z",
  8.     "dateModified": "1907-05-05T12:02:41Z",
  9.     "description": "百度 MIP 页面 demo",
  10.     "author": {
  11.       "@type": "Person",
  12.       "name": "Baidu"
  13.     },
  14.     "publisher": {
  15.       "@type": "Organization",
  16.       "name": "Baidu",
  17.       "logo": {
  18.         "@type": "ImageObject",
  19.         "url": "//m.baidu.com/static/index/plus/plus_logo.png",
  20.         "width": 600,
  21.         "height": 60
  22.       }
  23.     },
  24.     "image": {
  25.       "@type": "ImageObject",
  26.       "url": "//m.baidu.com/static/index/plus/plus_logo.png",
  27.       "height": 2000,
  28.       "width": 800
  29.     }
  30.   }
  31. </script>

可以通过资源引入/schema了解更多。http://schema.org.cn/NewsArticle.html


发布日期:

所属分类: 网站运营 SEO 标签:


没有相关文章!