.htaccess中如何只为网站的某个网址启用gzip?

时间:2017-10-16 05:51:51

标签: .htaccess gzip mod-deflate

我在yii2上有这个网站。我正在使用漂亮的网址。

现在我有以下压缩设置:

<IfModule mod_deflate.c>

SetOutputFilter DEFLATE


SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary

SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary


# Make proxies work as they should.

<IfModule mod_headers.c>

Header append Vary User-Agent

</IfModule>


</IfModule>

如何为url foo1 / bar1和foo2 / bar2启用压缩?

0 个答案:

没有答案