亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nginx location中uri的截取

發布時間:2021-06-03 17:34:08 來源:億速云 閱讀:401 作者:Leah 欄目:服務器

這篇文章給大家介紹nginx location中uri的截取,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

說明:

location 中的 root 和 alias

  • root 指令只是將搜索的根設置為 root 設定的目錄,即不會截斷 uri,而是使用原始 uri 跳轉該目錄下查找文件

  • aias 指令則會截斷匹配的 uri,然后使用 alias 設定的路徑加上剩余的 uri 作為子路徑進行查找

location 中的 proxy_pass 的 uri

如果 proxy_pass 的 url 不帶 uri

  • 如果尾部是"/",則會截斷匹配的uri

  • 如果尾部不是"/",則不會截斷匹配的uri

如果proxy_pass的url帶uri,則會截斷匹配的uri

Examples

location中的 root

root@pts/1 $ ls -ld /data/web/lctest*|awk '{print $NF}'
/data/web/lctest
/data/web/lctest2
/data/web/lctest3
/data/web/lctest4


location /lctest {
  root /data/web/;
}

location /lctest2/ {
  root /data/web/;
}
location /lctest3 {
  root /data/web;
}
location /lctest4/ {
  root /data/web;
}

curl 測試結果如下

備注: 瀏覽器輸入的時候最后面不添加 / , 會自動補上,但是curl 不行

root@pts/1 $ curl http://tapi.xxxx.com/lctest/
hello world

root@pts/1 $ curl http://tapi.xxxx.com/lctest2/
hello world
2

root@pts/1 $ curl http://tapi.xxxx.com/lctest3/
3
hello world

root@pts/1 $ curl http://tapi.xxxx.com/lctest4/
hello world
4

location alias

location /lctest5 {
  alias /data/web/;
}
location /lctest6/ {
  alias /data/web/;
}

location /lctest7 {
  alias /data/web;
}

## 403 /data/web forbidden
location /lctest8/ {
  alias /data/web;
}

curl 測試結果如下

curl 'http://tapi.kaishustory.com/lctest5/'
curl 'http://tapi.kaishustory.com/lctest6/'
curl 'http://tapi.kaishustory.com/lctest7/'
結果都是 /data/web/index.html的輸出

root@pts/1 $ curl 'http://tapi.kaishustory.com/lctest8/'
<html>
<head><title>403 Forbidden</title></head>
<body bgcolor="white">
<center><h2>403 Forbidden</h2></center>
<hr><center>nginx</center>
</body>
</html>

location proxy_pass

#--------proxy_pass配置---------------------
location /t1/ { proxy_pass http://servers; }  #正常,不截斷
location /t2/ { proxy_pass http://servers/; }  #正常,截斷
location /t3 { proxy_pass http://servers; }  #正常,不截斷
location /t4 { proxy_pass http://servers/; }  #正常,截斷
location /t5/ { proxy_pass http://servers/test/; }  #正常,截斷
location /t6/ { proxy_pass http://servers/test; }  #缺"/",截斷
location /t7 { proxy_pass http://servers/test/; }  #含"//",截斷
location /t8 { proxy_pass http://servers/test; }  #正常,截斷

測試腳本

for i in $(seq 8)
do
  url=http://tapi.xxxx.com/t$i/doc/index.html
  echo "-----------$url-----------"
  curl url
done

測試結果

----------http://tapi.xxxx.com/t1/doc/index.html------------
/t1/doc/index.html

----------http://tapi.xxxx.com/t2/doc/index.html------------
/doc/index.html

----------http://tapi.xxxx.com/t3/doc/index.html------------
/t3/doc/index.html

----------http://tapi.xxxx.com/t4/doc/index.html------------
/doc/index.html

----------http://tapi.xxxx.com/t5/doc/index.html------------
/test/doc/index.html

----------http://tapi.xxxx.com/t6/doc/index.html------------
/testdoc/index.html

----------http://tapi.xxxx.com/t7/doc/index.html------------
/test//doc/index.html

----------http://tapi.xxxx.com/t8/doc/index.html------------
/test/doc/index.html

關于nginx location中uri的截取就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

玉环县| 盘锦市| 太仓市| 建昌县| 灵台县| 孝昌县| 泸西县| 突泉县| 梁平县| 嵊州市| 自治县| 新宁县| 永寿县| 东至县| 黑水县| 江孜县| 武川县| 尉氏县| 合川市| 怀集县| 武威市| 东光县| 宿迁市| 四平市| 余姚市| 天祝| 临清市| 龙里县| 桃园县| 铜鼓县| 七台河市| 阳曲县| 灵武市| 武陟县| 衡东县| 伊金霍洛旗| 双辽市| 来凤县| 巴青县| 霸州市| 贵溪市|