同时在apache中启用CGI中的gzip和$ STR_REPLACE


1

我的CGI脚本中有一个代码用于文本替换(例如将'red'替换为'blue')

$STR_SEARCH='red'
$STR_REPLACE='blue'

我在.htaccess中使用以下代码来启用替换功能:

(RequestHeader unset Accept-Encoding)

这很好用。但是当我想使用gzip进行压缩时,gzip不起作用。如果我禁用替换,gzip工作正常。如何让gzip和替换一起工作?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.