# Base
| <!-- 页面作者 --> | |
| <meta name="Author" contect="你的姓名"> | |
| <!-- 页面主要内容 --> | |
| <meta name="Description" contect=""> | |
| <!-- 页面关键词 --> | |
| <meta name="keywords" contect=""> | |
| <!-- 页面版权 --> | |
| <meta name="Copyright" Content="All Rights Reserved icediary"> | |
| <!-- 设定回访为 1 天 --> | |
| <meta name="revisit-after" CONTENT="1 days" > | |
| <!-- 用以说明生成工具(如 Microsoft FrontPage 4.0)等 --> | |
| <meta name="Generator" contect=""> | |
| <!-- 允许搜索引擎可以检索,页面上链接可以查询 --> | |
| <meta name="Robots" contect="all | none | index | noindex | follow | nofollow"> | 
Robots:
- all:文件将被检索,且页面上的链接可以被查询;
- none:文件将不被检索,且页面上的链接不可以被查询;
- index:文件将被检索;
- follow:页面上的链接可以被查询;
- noindex:文件将不被检索,但页面上的链接可以被查询;
- nofollow:文件将不被检索,页面上的链接可以被查询
| <!-- 让移动设备显示的窗口宽度等于设备的真实宽度 --> | |
| <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
| <!-- IE8 及以上版本浏览器都以最高版本 IE 来渲染页面 --> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <!-- 禁止把数字转化为拨号链接 --> | |
| <meta name="format-detection" content="telephone=no"> | |
| <!-- 禁止作为邮箱地址 --> | |
| <meta name="format-detection" content="email=no"> | |
| <!-- 禁止跳转至地图 --> | |
| <meta name="format-detection" content="adress=no"> | 
# Baidu
| <!-- 禁止搜索引擎转码 --> | |
| <meta http-equiv="Cache-Control" content="no-transform"> | |
| <meta http-equiv="Cache-Control" content="no-siteapp"> | |
| <!-- 禁止百度快照 --> | |
| <meta name="Baiduspider" content="noarchive"> | |
| <!-- 主要用于百度移动搜索,有利于搜索引擎将 PC 端的网站适配到手机移动端的网站 --> | |
| <meta name="mobile-agent" content="format=文档类型;url=手机移动页URL"> | 
# Apple
| <!-- 添加到主屏幕后,全屏显示 --> | |
| <meta name="apple-touch-fullscreen" content="yes"> | |
| <!-- 删除默认的苹果工具栏和菜单栏 --> | |
| <meta name="apple-mobile-web-app-capable" content="yes" /> | |
| <!-- 主题颜色 --> | |
| <!-- default(白色)black(黑色)和 black-translucent(灰色半透明) --> | |
| <meta name=”apple-mobile-web-app-status-bar-style” content=black” /> | |
| <!-- 设置 web app 的放置主屏幕上 icon 文件路径 --> | |
| <link rel="apple-touch-icon-precomposed" href="http://spion.blog.163.com/blog/iphone_milanoo.png" / | 
# UC 浏览器
| <!-- UC 强制竖屏 --> | |
| <meta name="screen-orientation" content="portrait"> | |
| <!-- UC 应用模式 --> | |
| <meta name="browsermode" content="application"> | |
| <!-- UC 强制全屏 --> | |
| <meta name="full-screen" content="yes"> | |
| <!-- UC 缩放不出滚动条 --> | |
| <meta name="viewport" content="uc-fitscreen=no|yes"/> | |
| <!-- UC 排版 --> | |
| <meta name="layoutmode" content="fitscreen|standard" /> | |
| <!-- UC 夜间模式 --> | |
| <meta name="nightmode" content="enable|disable"/> | |
| <!-- UC 强制图片显示 --> | |
| <meta name="imagemode" content="force"/> | |
| <!-- UC 应用模式 --> | |
| <meta name="browsermode" content="application"/> | 
# QQ 浏览器
| <!-- QQ 强制竖屏 --> | |
| <meta name="x5-orientation" content="portrait"> | |
| <!-- QQ 强制全屏 --> | |
| <meta name="x5-fullscreen" content="true"> | |
| <!-- QQ 应用模式 --> | |
| <meta name="x5-page-mode" content="app"> | 
# windows phone
| <!-- windows phone 点击无高光 --> | |
| <meta name="msapplication-tap-highlight" content="no"> | 
# 360 浏览器
| <!-- 启用 360 浏览器的极速模式 (webkit) --> | |
| <meta name="renderer" content="webkit"> | 
# 其他
| <!-- 针对手持设备优化,主要是针对一些老的不识别 viewport 的浏览器,比如黑莓 --> | |
| <meta name="HandheldFriendly" content="true"> | |
| <!-- 微软的老式浏览器 --> | |
| <meta name="MobileOptimized" content="320"> | |
| <!-- 设定页面语言为简体中文 --> | |
| <meta http-equiv="Content-Type" content="text/html; charset=gb2312> | |
| <!-- 设定该页面30秒自动刷新 --> | |
| <meta http-equiv="Refresh" Content="30"> | 
