一張網頁從meta標籤開始

  • 規定網頁編碼html

<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
  • 設置http cache時間,在快速迭代的項目中,咱們能夠設置max-age=604800s,也就是七天web

<meta http-equiv="Cache-Control" content="max-age=604800" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content="always" name="referrer">
<meta name="description" content="網站描述">
<meta name="keywords" content="關鍵詞一、關鍵詞2">
<meta name="viewport" content="width=1226">
  • 規定360安全瀏覽器使用webki內核進行渲染chrome

<meta name="renderer" content="webkit">

360瀏覽器開發者中心瀏覽器

  • 申明網站爲pc站,避免被轉碼安全

<meta name="applicable-device" content="pc">
  • 禁止瀏覽器轉碼app

<meta http-equiv="Cache-Control" content="no-transform" />
  • 禁止瀏覽器識別手機號碼網站

<meta name="format-detection" content="telephone=no">
  • 聲明視窗大小,禁止用戶縮放,移動端必備ui

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
相關文章
相關標籤/搜索