天天看點

5、nginx Rewrite文法

http://nginx.org/en/docs/http/ngx_http_rewrite_module.html#rewrite

重寫中用到的指令

if  (條件) {}  設定條件,再進行重寫

set #設定變量

return #傳回狀态碼

break #跳出rewrite

rewrite #重寫

If  文法格式

If 空格 (條件) {

    重寫模式

}

條件又怎麼寫?

答:3種寫法

1: “=”來判斷相等, 用于字元串比較

2: “~” 用正則來比對(此處的正則區分大小寫)

   ~* 不區分大小寫的正則

3: -f -d -e來判斷是否為檔案,為目錄,是否存在.

例子:

            if  ($remote_addr = 192.168.1.100) {

                return 403;

            }

 if ($http_user_agent ~ MSIE) {

                rewrite ^.*$ /ie.htm;

                break; #(不break會循環重定向)

 }

             if (!-e $document_root$fastcgi_script_name) {

                rewrite ^.*$ /404.html break;

            } 

            注, 此處還要加break,

以 xx.com/dsafsd.html這個不存在頁面為例,

我們觀察通路日志, 日志中顯示的通路路徑,依然是GET /dsafsd.html HTTP/1.1

提示: 伺服器内部的rewrite和302跳轉不一樣.

跳轉的話URL都變了,變成重新http請求404.html, 而内部rewrite, 上下文沒變,

就是說 fastcgi_script_name 仍然是 dsafsd.html,是以 會循環重定向.

set 是設定變量用的, 可以用來達到多條件判斷時作标志用.

達到apache下的 rewrite_condition的效果

如下: 判斷IE并重寫,且不用break; 我們用set變量來達到目的

if ($http_user_agent ~* msie) {

                set $isie 1;

            }

            if ($fastcgi_script_name = ie.html) {

                set $isie 0;

            }

            if ($isie 1) {

                rewrite ^.*$ ie.html;

            }

Rewrite文法

Rewrite 正規表達式  定向後的位置 模式

Goods-3.html ---->Goods.php?goods_id=3

goods-([\d]+)\.html ---> goods.php?goods_id =$1  

location /ecshop {

index index.php;

rewrite goods-([\d]+)\.html$ /ecshop/goods.php?id=$1;

rewrite article-([\d]+)\.html$ /ecshop/article.php?id=$1;

rewrite category-(\d+)-b(\d+)\.html /ecshop/category.php?id=$1&brand=$2;

rewrite category-(\d+)-b(\d+)-min(\d+)-max(\d+)-attr([\d\.]+)\.html /ecshop/category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5;

rewrite category-(\d+)-b(\d+)-min(\d+)-max(\d+)-attr([\d+\.])-(\d+)-([^-]+)-([^-]+)\.html /ecshop/category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5&page=$6&sort=$7&order=$8;

}

注意:用url重寫時, 正則裡如果有”{}”,正則要用雙引号包起來

繼續閱讀