已启用 Gzip,我请求的站点大小为 2.7kb。不幸的是,该站点被压缩为零字节。您如何在 htaccess 中声明代码以确保文件不会在运行中被压缩为零字节?
答案1
没有文件在压缩后是零字节。更有可能的是您的传输失败了。以下是使用我能创建的最小文件(零字节)的示例:
$ touch zerobytes.demonstration
$ ls -l zerobytes.demonstration
-rw-rw-r-- 1 walt walt 0 Oct 21 11:26 zerobytes.demonstration
$ gzip -9 --verbose zerobytes.demonstration
zerobytes.demonstration: 0.0% -- replaced with zerobytes.demonstration.gz
$ ls -l zerobytes.demonstration.gz
-rw-rw-r-- 1 walt walt 44 Oct 21 11:26 zerobytes.demonstration.gz
$ od -bc zerobytes.demonstration.gz
0000000 037 213 010 010 272 256 047 126 002 003 172 145 162 157 142 171
037 213 \b \b 272 256 ' V 002 003 z e r o b y
0000020 164 145 163 056 144 145 155 157 156 163 164 162 141 164 151 157
t e s . d e m o n s t r a t i o
0000040 156 000 003 000 000 000 000 000 000 000 000 000
n \0 003 \0 \0 \0 \0 \0 \0 \0 \0 \0
0000054
$