我怎样才能使用"或" nginx中的运算符" if"声明?

时间:2015-04-20 19:07:56

标签: nginx

例如,我想这样做:

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指令,因此不能选择。

1 个答案:

答案 0 :(得分:23)

修改

由于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;
}