搜尋

首頁  >  問答  >  主體

nginx如何實作用rewrite給所有html加?mode=test,只加一次?

    location / {
            if($args *~ "mode=formal"){
                rewrite (.*) ? redirect;
                rewrite (.*) ?mode=test redirect;
            }
            else if($args [[不包含mode=test]]){
                rewrite ^/(.*).html$ /.html?mode=test redirect;
            }
            error_page 404 = @nodejs;
    }

我想用上面這種方式來配置,先判斷$args,再進行rewrite,不知道能行不。
還有那個[[不包含mode=test]]該怎麼寫?

更新

已經測試過了,這樣是不行的,if條件裡不能用$args。那應該如何實現這個思路呢?

更新

用回覆裡的兩種方法都試過了,重啟nginx的時候,都會出同樣的錯誤:

nginx: [emerg] unknown directive "if($arg_mode" in ....

and

nginx: [emerg] unknown directive "if($query_string" in ....

是因為if模組沒安裝?

阿神阿神2754 天前702

全部回覆(2)我來回復

  • 黄舟

    黄舟2017-05-16 17:22:29

    if ( $arg_mode !~ w+ ){
    rewrite (.*) /index.html?mode=測試重定向;
    }

    回覆
    0
  • PHP中文网

    PHP中文网2017-05-16 17:22:29

    雷雷

    回覆
    0
  • 取消回覆