日本少妇喷浆_中国一级黄片播放_亚洲精品免费视频观看视频_无码有码国产日韩_印度女人性液欧美黄_极品水手服jk自慰喷水_无码久久少妇免费_天天影视色香欲综合网网站86_色就色欧美综合偷拍区_国产无限制自拍

4008-888-999

網(wǎng)頁啟用Gzip壓縮 提高瀏覽速度

2015-10-13

Gzip壓縮我很早已經(jīng)就啟用了,不過從未與大家分享過。近期由于備案問題,臨時(shí)更換服務(wù)器,結(jié)果忘了啟用Gzip壓縮,周末利用空余時(shí)間啟用了Gzip壓縮,并把全部過程記錄下來,與大家分享。

啟用Gzip壓縮的好處

它的好處顯而易見,提高網(wǎng)頁瀏覽速度,無論是之前說的精簡代碼、壓縮圖片都不如啟用Gzip來的實(shí)在。下圖為啟用Gzip后的效果。

網(wǎng)頁啟用Gzip壓縮 提高瀏覽速度

Gzip壓縮效率非常高,通??梢赃_(dá)到70%的壓縮率,也就是說,如果你的網(wǎng)頁有30K,壓縮之后就變成了9K左右。

第一步:打開IIS,啟用HTTP壓縮服務(wù)

網(wǎng)頁啟用Gzip壓縮 提高瀏覽速度

右擊“網(wǎng)站”->“屬性”,選擇“服務(wù)”。在“HTTP壓縮”框中選中“壓縮應(yīng)用程序文件”和“ 壓縮靜態(tài)文件”,按需要設(shè)置“臨時(shí)目錄”和“臨時(shí)目錄的最大限制”;

第二步:啟用web服務(wù)

網(wǎng)頁啟用Gzip壓縮 提高瀏覽速度

第三步:修改MetaBase.xml

開始 > 運(yùn)行中輸入 c:\windows\system32\inetsrv,找到 MeteBase.xml,先備份,在修改。(有的服務(wù)器不需要修改此文件便可以使用)

搜索 Location ="/LM/W3SVC/Filters/Compression/gzip"

仔細(xì)核對(duì)下代碼:

<IIsCompressionScheme Location ="/LM/W3SVC/Filters/Compression/deflate" 
HcCompressionDll="%windir%\system32\inetsrv\gzip.dll" 
HcCreateFlags="0" 
HcDoDynamicCompression="TRUE" 
HcDoOnDemandCompression="TRUE" 
HcDoStaticCompression="FALSE" 
HcDynamicCompressionLevel="0" 
HcFileExtensions="htm 
html 
txt" 
HcOnDemandCompLevel="10" 
HcPriority="1" 
HcScriptFileExtensions="asp 
dll 
exe" 

</IIsCompressionScheme> 
<IIsCompressionScheme Location ="/LM/W3SVC/Filters/Compression/gzip" 
HcCompressionDll="%windir%\system32\inetsrv\gzip.dll" 
HcCreateFlags="1" 
HcDoDynamicCompression="TRUE" 
HcDoOnDemandCompression="TRUE" 
HcDoStaticCompression="TRUE" 
HcDynamicCompressionLevel="0" 
HcFileExtensions="htm 
html 
txt" 
HcOnDemandCompLevel="10" 
HcPriority="1" 
HcScriptFileExtensions="asp 
dll 
exe" 

</IIsCompressionScheme>

替換成:

<IIsCompressionScheme Location ="/LM/W3SVC/Filters/Compression/gzip" 
HcCompressionDll="%windir%\system32\inetsrv\gzip.dll" 
HcCreateFlags="1" 
HcDoDynamicCompression="TRUE" 
HcDoOnDemandCompression="TRUE" 
HcDoStaticCompression="TRUE" 
HcDynamicCompressionLevel="10" 
HcFileExtensions="html 
css 
js 
htm 
xml 
txt" 
HcOnDemandCompLevel="10" 
HcPriority="1" 
HcScriptFileExtensions="php 
dll" 

</IIsCompressionScheme> 
<IIsCompressionScheme Location ="/LM/W3SVC/Filters/Compression/deflate" 
HcCompressionDll="%windir%\system32\inetsrv\gzip.dll" 
HcCreateFlags="2" 
HcDoDynamicCompression="TRUE" 
HcDoOnDemandCompression="TRUE" 
HcDoStaticCompression="TRUE" 
HcDynamicCompressionLevel="10" 
HcFileExtensions="html 
css 
js 
htm 
xml 
txt" 
HcOnDemandCompLevel="10" 
HcPriority="1" 
HcScriptFileExtensions="php 
dll" 

</IIsCompressionScheme>

修改好后,在服務(wù)中停止IIS Admin Service 服務(wù)。

網(wǎng)頁啟用Gzip壓縮 提高瀏覽速度

然后在保存MeteBase.xml,保存好后再啟動(dòng)IIS。這樣Gzip壓縮就啟用成功了。

最后,測試Gzip壓縮是否成功,可以到站長工具http://tool.chinaz.com/Gzips/進(jìn)行檢測。

提示:

本文僅針對(duì)windows的IIS服務(wù)器上演示的,VPS主機(jī)、獨(dú)立服務(wù)器均可以實(shí)現(xiàn),虛擬主機(jī)用戶需要咨詢空間商(一般虛擬主機(jī)都啟用了Gzip)如果你的站在啟用Gzip壓縮時(shí)遇到了困難,可在此跟帖評(píng)論與交流,我會(huì)竭盡全力為大家解答。