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