如何压缩数据
1.我的主机使用IIS 7,IIS不是我的权限来访问设置。 现在,web.config或其他我如何发送js / css / aspx来应用Gzip。
2.how可以启用iis6的etags
如何使我的网站无法正常工作(Yslow)
<httpCompression directory="%SystemDrive%inetpubtempIIS Temporary Compressed Files">
<scheme name="gzip" dll="%Windir%system32inetsrvgzip.dll"/>
<dynamicTypes>
<add mimeType="text/*" enabled="true"/>
<add mimeType="message/*" enabled="true"/>
<add mimeType="application/javascript" enabled="true"/>
<add mimeType="*/*" enabled="false"/>
</dynamicTypes>
<staticTypes>
<add mimeType="text/*" enabled="true"/>
<add mimeType="message/*" enabled="true"/>
<add mimeType="application/javascript" enabled="true"/>
<add mimeType="*/*" enabled="false"/>
</staticTypes>
</httpCompression>
<urlCompression doStaticCompression="true" doDynamicCompression="true"/>
编辑
这个代码在gloabal.asax中做得不错,但仍然Yslow显示不使用Gzip?
void Application_PreRequestHandlerExecute(object sender,EventArgs e){HttpApplication app = sender as HttpApplication; string acceptEncoding = app.Request.Headers [“Accept-Encoding”]; Stream prevUncompressedStream = app.Response.Filter;
if (!(app.Context.CurrentHandler is Page ||
app.Context.CurrentHandler.GetType().Name == "SyncSessionlessHandler") ||
app.Request["HTTP_X_MICROSOFTAJAX"] != null)
return;
if (acceptEncoding.Contains("gzip") )
return;
acceptEncoding = acceptEncoding.ToLower();
if (acceptEncoding.Contains("deflate") || acceptEncoding == "*")
{
// gzip
app.Response.Filter = new GZipStream(prevUncompressedStream,
CompressionMode.Compress);
app.Response.AppendHeader("Content-Encoding", "gzip");
}
else if (acceptEncoding == null || acceptEncoding.Length == 0)
{
// defalte
app.Response.Filter = new DeflateStream(prevUncompressedStream,
CompressionMode.Compress);
app.Response.AppendHeader("Content-Encoding", "deflate");
}
}
文章链接
我相信在代码中实现压缩是一种错误的方法; 我了解你的情况,我相信这很困难,但我会考虑转移到另一个主机。
这个代码在gloabal.asax中做得不错,但仍然Yslow显示不使用Gzip?
你的意思是说,当你在本地测试时,它会起作用,但当它被部署到主机时,它不会起作用? 我已经看到一些代理(例如企业网关)从线路上删除了“accept-encoding gzip”,所以这可能是需要考虑的事情。
链接地址: http://www.djcxy.com/p/7609.html