Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我正在使用的 php 项目中
ob_start('gz_handler');
在每一页的开头。
但是在下载 zip 文件时,我遇到了一些浏览器的问题。所以我需要在那里停用它。
那么 ob_start('gz_handler') 的反义词是什么?我该怎么做才能不压缩输出?
例如,如果您使用 apache,最好的方法是在您的 .htaccess 文件中为应该压缩的文件类型执行此操作。
例如,您可以将其放入您的 htaccess 文件中:
<FilesMatch "\.(php|html|js|css?)$"> php_flag zlib.output_compression On </FilesMatch>