apache返回预压缩文件

1, 在apache的配置文件中增加:

AddType plain/text .abc

AddEncoding gzip .abc

其中:.abc为压缩文件的后缀, 压缩文件必须是正确的gzip格式

2,请求:

$.get('abc.abc',function(data){				
	$('body').text(data);
});
 

相关推荐