您好,登錄后才能下訂單哦!
1、語法
location [=|~|~*|^~|@] /uri/ { ... }
2、說明
從上面的語法出發,可以了解到 location 可以區分為三個部分,接下來一個一個的研究一下。
1) [=|~|~*|^~|@]
上面定義了幾個不同的符號,表示不同的匹配規則,那么先后順序呢?
測試示例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
調整上面的順序
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; }
這種場景中,存在一個沒有符合的路由規則,那么實際的測試是怎樣呢?
- http://localhost/hello/wor 返回601 - http://localhost/hello/world 返回602 - http://localhost/hello/world23 返回602 - http://localhost/hello/world/123 返回602
從上面的示例可以看出
2) [uri]
這里主要填的是需要匹配的 path 路徑,根據前面的符號,這里可以填寫精確到 path 路徑,也可以填正則表達式,下面則主要針對正則進行說明
路由轉發
請求 path 匹配只是第一步,匹配完成之后,如何將請求轉發給其它的 web 服務呢?
1、反向代理
通常可見的一種使用姿勢就是使用 nginx 代理請求,轉發到內部的其它 web 服務上
主要通過 prixy_pass 來實現
location ^~ /webs { proxy_pass http://127.0.0.1:8080/webs; }
上面規則的含義是,將所有以 webs 開頭的請求,轉發到 8080 端口的 web 服務上。
上面是直接寫死轉發到一個 ip 上,如果是多個機器提供服務,可以這樣配置
## 下面放在http的括號內,作為第一層 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提供的全局變量或自己設置的變量,結合正則表達式和標志位實現url重寫以及重定向。
rewrite只能放在server{},location{},if{}中,并且只能對域名后邊的除去傳遞的參數外的字符串起作用, 如
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開頭的,全部轉發到/hexo/public/index.html
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。