如何在 Apache 2.4 中启用 Content-MD5 标签
How to enable Content-MD5 tag in Apache 2.4
我刚刚安装了一个单独的 Apache 2.4
(没有任何其他模块,如 Php
或其他模块)并打算在其上托管静态文件。静态文件放在 /var/www/html/test-files/
下。我尝试通过两种方式启用 core
ContentDigest
(由 Apache2 在 Apache2 Core 记录):
在 /var/www/html/test-files/
下创建 .htaccess
并将 ContentDigest On
添加到文件中。
编辑 /etc/apache2/apache2.conf
并添加以下内容:
<Directory /var/www/html/test-files/>
ContentDigest On
</Directory>
我使用 Google Chrome 的检查功能来测试下载一些 .html
和 mp4
文件,但看不到任何 Content-MD5
标签包含在headers.
注意:所有配置都是默认的。
我mis-understand这里有东西吗?如何启用标签?
我确实通过使用第二种方法 PLUS 禁用 mod_deflate
:
解决了这个问题
sudo a2dismod deflate
sudo service apache2 restart
我刚刚安装了一个单独的 Apache 2.4
(没有任何其他模块,如 Php
或其他模块)并打算在其上托管静态文件。静态文件放在 /var/www/html/test-files/
下。我尝试通过两种方式启用 core
ContentDigest
(由 Apache2 在 Apache2 Core 记录):
在
/var/www/html/test-files/
下创建.htaccess
并将ContentDigest On
添加到文件中。编辑
/etc/apache2/apache2.conf
并添加以下内容:<Directory /var/www/html/test-files/>
ContentDigest On
</Directory>
我使用 Google Chrome 的检查功能来测试下载一些 .html
和 mp4
文件,但看不到任何 Content-MD5
标签包含在headers.
注意:所有配置都是默认的。
我mis-understand这里有东西吗?如何启用标签?
我确实通过使用第二种方法 PLUS 禁用 mod_deflate
:
sudo a2dismod deflate
sudo service apache2 restart