基于 Apache 2.2.x 的 User-Agent 的条件指令?

基于 Apache 2.2.x 的 User-Agent 的条件指令?

我想在我们的 Apache httpd 配置中实现类似下面的操作:

    <If "%{HTTP_USER_AGENT} !~ /something/">
        RemoveEncoding .gz .tgz
        AddType application/x-gzip .gz
    </If>

但据我了解,此条件<If>语法仅适用于 Apache 2.4.x。不幸的是,我暂时只能使用 Apache 2.2.x。有没有办法使用 Apache 2.2.x 来实现这一点?也许可以使用BrowserMatch环境变量?谢谢!

相关内容