1. <link rel="shortcut icon" type="image/x-icon" href="http://www.&&&&.com/favicon.ico" /> (这个文件是必须写)
    2. <link rel="icon" href="http://www.&&&&.com/favicon.ico" type="image/x-icon" />
    3. shortcut icon,特指浏览器中地址栏左侧显示的图标,一般大小为16x16,后缀名为.icon;(IE6浏览器只支持icon格式的图标).ico文件格式通常可以被所有可以显示favicon的浏览器读取。
    4. meta标签说明
    5. <meta http-equiv="Cache-Control" content="no-siteapp" />
    6. <meta http-equiv="Cache-Control" content="no-siteapp-platform" />
    7. 禁止百度强制性的转码
    8. ●如果该网页只适合在电脑上进行浏览,例如(http://www.&&&.com.cn/ ),在html中加入如下meta:
    9. <meta name="applicable-device" content="pc">
    10. ●如果该网页只适合在移动设备上进行浏览,例如(http://3g.&&&.com.cn/ ),在html中加入如下meta:
    11. <meta name="applicable-device" content="mobile">
    12. ●如果网页采用了响应式网页设计,例如(http://cdc.tencent.com/) 不需要经过url自适配跳转就可以根据浏览器的屏幕大小自适应的展现合适的效果,同时适合在移动设备和电脑上进行浏览,在html中加入如下meta:
    13. <meta name="applicable-device" content="pc,mobile">
    14. Meta声明格式:<meta name="mobile-agent" content="format=[wml|xhtml|html5]; url=url">
    15. 注:A.加粗字体部分是需要站点自定义的内容。
    16. [wml|xhtml|html5]——根据手机页的协议语言,选择其中的一种。
    17. url=url——后者代表当前PC页所对应的手机页url,两者必须是一一对应关系
    18. Meta声明示例:
    19. <meta name="mobile-agent" content="format=html5;url=http://m.&&&.cn/">
    20. <meta name="mobile-agent" content="format=xhtml;url=http://&&&.cn/">