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>