SEO運用meta標籤進行網站優化

SEO定義

Search Engine Optimization 搜索引擎優化html

一,經常使用的HTTP-EQUIV類型:

Set-Cookie(cookie設定)web

說明:若是網頁過時,存盤的cookie將會被刪除(必須是GMT的時間格式)windows

<meta http-equiv="Set-Cookie" content="cookievalue=xxx;expires=Wednesday,21-Oct-98 16:14:21 GMT;path=/">

 Window-target(顯示窗口的設定)瀏覽器

說明:強制頁面在當前窗口以獨立頁面顯示----用來防止別人在框架裏面調用你的頁面緩存

<meta http-equiv="Window-target" content="_top">

 Content-Type(顯示字符集的設定)服務器

說明:設定頁面使用的字符集cookie

<meta http-equiv="Content-Type" content="text/html;charset=utf-8">

 expires(期限)app

說明:用於設定網頁的到期時間,一旦網頁過時,必須到服務器上從新調閱(必須使用GMT的時間格式)框架

<meta http-equiv="expires" content="Wed, 26 Feb 2016 08:21:57GMT">

 Pragma(cache模式)優化

說明:禁止瀏覽器從本地機的緩存中調閱頁面內容(訪問者沒法脫機瀏覽)

<meta http-equiv="Pragma" content="no-cache">

 Refresh(刷新)

說明:須要讓頁面定時連接到其餘頁面的話,就用這句(停留五秒後自動跳轉到URL地址)
html中的meta信息裏能夠直接設置跳轉,能夠設置跳轉延遲時間和跳轉url,常常應用,好比支付完了告訴用戶支付成功並跳轉到訂單頁面。下面的列子表示:5秒鐘後頁面會自動跳轉到http://www.myqingmei.cn

<meta http-equiv="refresh" content="5;url=www.myqing.cns">

 

二,meta標籤name變量語法

keywords(關鍵字)---已通過時

說明:用來告訴搜索引擎 你網頁的關鍵字是什麼

<meta name="keywords" content="xxx">

 description(簡介)------(import)

說明:用來告訴搜索引擎你網站的主要內容

<meta name="description" content="xxx">

 robots(機器人嚮導)------(import)

說明:robots用來告訴搜索機器人 哪些頁面須要索引 哪些不須要 ;用來阻止搜索引擎獲取拷貝頁面、私密頁面和未完成的頁面.content參數有:all,none,index,noindex,follow,nofollow.默認all 

<meta name="robots" content="none">

 其中:

all:文件將被檢索,且頁面上的連接能夠被查詢;

none:文件將不被檢索,且頁面上的連接不能夠被查詢;

index:文件將被檢索;

follow:頁面上的連接能夠被查詢;

noindex:文件將不被檢索;

nofollow:頁面上的連接不能夠被查詢。

author(做者)

說明:標註網頁的做者

<meta name="author" content="huangqingmei">

 notranslate----(important)

說明:有時,Google在結果頁面會提供一個翻譯連接,但有時候你不但願出現這個連接

<meta name=」google」content=」notranslate」 /> 

 

三,如下是一些不經常使用的例子和簡要的說明

<meta name="viewport" content="width=device-width, initial-scale=1" />

 viewport屬性說明:

width:可視區域的寬度,值可爲數字或關鍵詞device-width

height同width

intial-scale:頁面首次被顯示時可視區域的縮放級別,取值1.0則頁面按實際尺寸顯示,無任何縮放

maximum-scale=1.0, minimum-scale=1.0;可視區域的縮放級別,

maximum-scale用戶可將頁面放大的程序,1.0將禁止用戶放大到實際尺寸之上。

user-scalable:是否可對頁面進行縮放,no 禁止縮放

<meta name="googlebot" content="index,follow" />
<meta name="verify" content="index,follow" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="google" content="index,follow" />

 啓用WebAPP全屏模式

<meta name="apple-mobile-web-app-capable" content="yes" />

 隱藏狀態欄/設置狀態欄顏色:只有在開啓WebApp全屏模式時才生效。content的值爲default | black | black-translucent 。

<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />

 添加到主屏後的標題

<meta name="apple-mobile-web-app-title" content="標題">

 忽略數字自動識別爲電話號碼

<meta content="telephone=no" name="format-detection" />

忽略識別郵箱

<meta content="email=no" name="format-detection" />

針對手持設備優化,主要是針對一些老的不識別viewport的瀏覽器,好比黑莓

<meta name="HandheldFriendly" content="true">

微軟的老式瀏覽器

<meta name="MobileOptimized" content="320">

uc強制豎屏

<meta name="screen-orientation" content="portrait">

QQ強制豎屏

<meta name="x5-orientation" content="portrait">

UC強制全屏

<meta name="full-screen" content="yes">

QQ強制全屏

<meta name="x5-fullscreen" content="true">

UC應用模式

<meta name="browsermode" content="application">

QQ應用模式

<meta name="x5-page-mode" content="app">

windows phone 點擊無高光

<meta name="msapplication-tap-highlight" content="no">

 

四,實例

在html頁面上設置不緩存
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0"> 
相關文章
相關標籤/搜索