例如,我想这样做:
if ($http_user_agent ~ "MSIE 6.0" || $http_user_agent ~ "MSIE 7.0" (etc, etc)) { rewrite ^ ${ROOT_ROOT}ancient/ last; break; }
而不是这个:
if ($http_user_agent ~ "MSIE 6.0") { rewrite ^ ${ROOT_ROOT}ancient/ last; break; } if ($http_user_agent ~ "MSIE 7.0") { rewrite ^ ${ROOT_ROOT}ancient/ last; break; }
Nginx拒绝这种语法(减去(等等)),我在文档中没有看到任何关于此的内容.提前致谢.
此外,我们选择不使用$ ancient_browser指令,因此这不是一个选项.
编辑:
由于Alexey Ten没有添加新的答案,我会编辑我的,以便在这种情况下给出更好的答案.
if ($http_user_agent ~ "MSIE [67]\.")
原始答案:
Nginx不允许多个或嵌套的if语句,但是你可以这样做:
set $test 0; if ($http_user_agent ~ "MSIE 6.0") { set $test 1; } if ($http_user_agent ~ "MSIE 7.0") { set $test 1; } if ($test = 1) { rewrite ^ ${ROOT_ROOT}ancient/ last; }
它不短,但它允许您进行检查并只重写一次重写规则.
替代答案:
在某些情况下,您还可以使用| (管)
if ($http_user_agent ~ "(MSIE 6.0)|(MSIE 7.0)") { rewrite ^ ${ROOT_ROOT}ancient/ last; }