gzipping可以加快页面加载速度

时间:2014-06-09 13:40:33

标签: apache .htaccess nginx gzip

我想浏览我们的网站www.urbanlocker.co.uk,以加快页面加载速度。我不知道它是apache web server,lingx还是如何找出它是哪一个。顺便说一下,我可以访问filezilla上传/下载文件,但不能访问托管公司。我正在复制粘贴这些代码beşow以启用gzipping并将.htaccess文件上传到根文件夹但没有任何工作。有谁知道我做错了什么?

这个建议用于Apache:

<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>
另一个:

AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript

这个推荐用于nginx:

gzip on;
gzip_comp_level 2;
gzip_http_version 1.0;
gzip_proxied any;
gzip_min_length 1100;
gzip_buffers 16 8k;
gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml           application/xml+rss text/javascript;

# Disable for IE < 6 because there are some known problems
gzip_disable "MSIE [1-6].(?!.*SV1)";

# Add a vary header for downstream proxies to avoid sending cached gzipped files to IE6
gzip_vary on;

如果您需要任何进一步的信息,请与我们联系。非常感谢提前。

2 个答案:

答案 0 :(得分:0)

根据http://builtwith.com,您的服务器是IIS,它已经在解压缩内容。

强烈建议您在开始尝试优化之前了解所使用的服务器类型。

要检查标头和gzip,您可以使用http://redbot.org/

之类的工具

答案 1 :(得分:0)

在命令行上使用Curl将返回响应服务器的所有标头。此信息通常包含“服务器”标头,显示正在处理请求的应用程序服务器的类型。

$ curl -I www.urbanlocker.co.uk
HTTP/1.1 200 OK
Content-Length: 19834
Content-Type: text/html
Last-Modified: Mon, 09 Jun 2014 11:40:54 GMT
Accept-Ranges: bytes
ETag: "addd6abd783cf1:0"
Server: Microsoft-IIS/7.5
X-Powered-By: ASP.NET
X-Powered-By-Plesk: PleskWin
Date: Mon, 09 Jun 2014 17:00:18 GMT