- 【页面开发和上线前均需SEO介入】确保页面符合搜索引擎规范和优化页面排名SEO友好度。
- 【URL层级<=4,使用SEO部门唯一规范的URL】URL略有区别在搜索引擎里就会识别成不同的URL导致大量无效URL被收录,如大小写,多一个”/”或者“?”,包含一堆参数或会话ID。
- 【不使用javascrpt,flash,iframe等】一些不在网页源代码中直接显示内容的技术,会被搜索引擎判断为内容贫乏。
- 【为所有页面添加统计代码】如百度统计,谷歌分析。
- 【移动端优化】曾借助百度熊掌号流量增长翻倍,比如日均流量50万UV,那么使用熊掌号后的日均流量是100万UV,熊掌号是专门针对移动端场景的。可惜熊掌号不知道去哪了…
- 移动适配规范
1,在pc页面添加,指向m版对应的页面: <meta name="mobile-agent" content="format=html5;url=https://m.baidu.com/xxxx.html"> <meta name="mobile-agent" content="format=xhtml;url=https://m.baidu.com/xxxx.html"> <link rel="alternate" media="only screen and (max-width: 640px)" href="https://m.baidu.com/xxxx.html" /> <meta name="applicable-device" content="pc"> 2,在m版页面添加,指向pc版对应的页面: <link rel="canonical" href="https://www.baidu.com/xxxx.html"/></li> <meta name="applicable-device" content="mobile"> 3,全站添加,包括m版和pc版,mip除外: <meta http-equiv="Cache-Control" content="no-transform" /> <meta http-equiv="Cache-Control" content="no-siteapp" />
- mip网页规范
1,在m版页面添加:指向mip版的链接 <link rel="miphtml" href="https://mip.baidu.com/xxx_17446.html"> 2,在mip页面添加:指向m版的链接 <link rel="canonical" href="https://m.baidu.com/xxx_17446.html">
- 关联熊掌号的站点添加:
<script src="https://mipcache.bdstatic.com/extensions/platform/v1/mip-cambrian/mip-cambrian.js"></script>
- 熊掌号Jsonld,和时间因子是一套代码
在PC和移动端均添加: <script type="application/ld+json"> { "@context": "https://ziyuan.baidu.com/contexts/cambrian.jsonld", "@id": "当前网页链接", "appid": "你的熊掌ID", "title": "当前网页的标题", "images": [ "当前网页图片链接" ], "description": "当前网页的描述", "pubDate": "2019-04-4T17:57:57", "upDate": "2019-04-05T17:57:57" } </script>
说明:熊掌号SDK和Jsonld放在body标签里面,其它均放在header标签里面
时间因子具体字体说明,链接https://ziyuan.baidu.com/college/articleinfo?id=2210