当我执行时:
sudo a2dismod deflate
sudo service apache2 restart
并在 Chrome Web 工具中刷新并检查我网站的响应标头,我的资产(css 和 js)仍被标记为Content-Encoding : gzip
. Y-Slow 还确认除了实际的 html 文档之外的所有资产仍然被压缩。
我在 CodeIgniter 的配置文件中关闭了输出压缩:
$config['compress_output'] = FALSE;
对于它的价值......尽管禁用了 deflate 模块,我认为这并不重要,我的/etc/apache2/mods-available/deflate.conf
文件是系统默认值:
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/x-javascript application/javascript application/ecmascript
AddOutputFilterByType DEFLATE application/rss+xml
</IfModule>
我正在运行 Ubuntu 12.04。还有什么可能导致我的资产被压缩?
我的.htaccess
文件没有放气命令。