1、語法
成都創(chuàng)新互聯(lián)專注于企業(yè)成都全網(wǎng)營銷推廣、網(wǎng)站重做改版、甘州網(wǎng)站定制設計、自適應品牌網(wǎng)站建設、H5建站、商城系統(tǒng)網(wǎng)站開發(fā)、集團公司官網(wǎng)建設、成都外貿(mào)網(wǎng)站建設、高端網(wǎng)站制作、響應式網(wǎng)頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為甘州等各大城市提供網(wǎng)站開發(fā)制作服務。
location [=|~|~*|^~|@] /uri/ { ... }
2、說明
從上面的語法出發(fā),可以了解到 location 可以區(qū)分為三個部分,接下來一個一個的研究一下。
1) [=|~|~*|^~|@]
上面定義了幾個不同的符號,表示不同的匹配規(guī)則,那么先后順序呢?
測試示例1:
location = /world { return 600; } location = /hello { return 600; } location ~ /hellowo { return 602; } location ^~ /hello { return 601; }
- 請求 localhost/world 返回600 - 請求 localhost/world2 localhost/test/world 返回其他 - 請求 localhost/hello 返回600 - 請求 localhost/hello/123 返回601 - 請求 localhost/hellow 返回601 - 請求 localhost/hellowo 返回601 - 請求 localhost/test/hellowo 返回602 - 請求 localhost/test/hello 返回其他
因此可以知道:
測試示例2:
location ~ /hello { return 602; } location ~ /helloworld { return 601; }
- 請求 localhost/world/helloworld 返回 602 - 請求 localhost/helloworld 返回 602
調(diào)整上面的順序
location ~ /helloworld { return 601; } location ~ /hello { return 602; }
- 請求 localhost/helloworld 返回601 - 請求 localhost/world/helloworld 返回601 - 請求 localhost/helloWorld 返回602
所以同時正則匹配時
測試示例3:
location ^~ /hello/ { return 601; } location /hello/world { return 602; }
這種場景中,存在一個沒有符合的路由規(guī)則,那么實際的測試是怎樣呢?
- http://localhost/hello/wor 返回601 - http://localhost/hello/world 返回602 - http://localhost/hello/world23 返回602 - http://localhost/hello/world/123 返回602
從上面的示例可以看出
2) [uri]
這里主要填的是需要匹配的 path 路徑,根據(jù)前面的符號,這里可以填寫精確到 path 路徑,也可以填正則表達式,下面則主要針對正則進行說明
路由轉發(fā)
請求 path 匹配只是第一步,匹配完成之后,如何將請求轉發(fā)給其它的 web 服務呢?
1、反向代理
通??梢姷囊环N使用姿勢就是使用 nginx 代理請求,轉發(fā)到內(nèi)部的其它 web 服務上
主要通過 prixy_pass 來實現(xiàn)
location ^~ /webs { proxy_pass http://127.0.0.1:8080/webs; }
上面規(guī)則的含義是,將所有以 webs 開頭的請求,轉發(fā)到 8080 端口的 web 服務上。
上面是直接寫死轉發(fā)到一個 ip 上,如果是多個機器提供服務,可以這樣配置
## 下面放在http的括號內(nèi),作為第一層 upstream test.online { server 120.11.11.11:8080 weight=1; server 120.11.11.12:8080 weight=1; } location ^~ /webs { proxy_pass http://test.online; proxy_redirect default; }
2、Rewrite 命令
rewrite功能就是,使用nginx提供的全局變量或自己設置的變量,結合正則表達式和標志位實現(xiàn)url重寫以及重定向。
rewrite只能放在server{},location{},if{}中,并且只能對域名后邊的除去傳遞的參數(shù)外的字符串起作用, 如
http://jb51.net/a/we/index.php?id=1&u=str
只對/a/we/index.php重寫。
語法: rewrite regex replacement [flag];
示例:
location ^~ /hexo { root '/Users/yihui/GitHub/'; } location ~ /hello { rewrite ^(/hello).*$ /hexo/public/index.html last; return 603; }
將hello開頭的,全部轉發(fā)到/hexo/public/index.html
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。