是否有可能有类似的东西。
IF ! ${QUERY_STRING} no-cache=1
<load mod_gzip>
END IF
如果有一个no-cache = 1的query_string,我试图在我们的开发环境中允许缓存清除
答案 0 :(得分:0)
您可以在root .htaccess中使用此代码:
# enable compression for all requests
SetOutputFilter DEFLATE
RewriteEngine On
# disable gzip compression is ?no-cache=1 is set in URL
RewriteCond %{QUERY_STRING} ^no-cache=1$ [NC]
RewriteRule ^ - [L,E=no-gzip:1,E=dont-vary:1]