首頁  >  文章  >  後端開發  >  nginx之location配置

nginx之location配置

WBOY
WBOY原創
2016-08-08 09:27:161370瀏覽
語法規則: location [=|~|~*|^~] /uri/ { … }
開頭表示精確配對
常規字串開頭,理解為符合url路徑即可。 nginx不對url做編碼,因此請求為/static/20%/aa,可以被規則^~ /static/ /aa匹配到(注意是空格)。
開頭表示區分大小寫的正規匹配
~*  開頭表示不區分大小寫的正則匹配~*  開頭表示不區分大小寫的正則匹配
!不匹配及不區分大小寫不匹配 的正則
通用匹配,任何請求都會匹配到。 多個location配置的情況下匹配順序為(參考資料而來,還未實際驗證,試試就知道了,不必拘泥,僅供參考):
首先匹配=,其次匹配^ ~, 其次是依檔案中順序的正規匹配,最後交給/ 通用匹配。當有匹配成功時候,停止匹配,並按當前匹配規則處理請求。
例子,有如下匹配規則:
location = / {
   #规则A
}
location = /login {
   #规则B
}
location ^~ /static/ {
   #规则C
}
location ~ \.(gif|jpg|png|js|css)$ {
   #规则D
}
location ~* \.png$ {
   #规则E
}
location !~ \.xhtml$ {
   #规则F
}
location !~* \.xhtml$ {
   #规则G
}
location / {
   #规则H
}

那麼產生的效果如下:
訪問根目錄/,http://local/s http://localhost/login 將匹配規則B,http://localhost/register 則匹配規則H
訪問http://localhost/static/a.html 將匹配規則C
訪問http: //localhost/a.gif, http://localhost/b.jpg 將符合規則D和規則E,但是規則D順序優先,規則E不起作用,而http://localhost/static/c.png 則優先匹配到規則C
訪問http://localhost/a.PNG 則匹配規則E, 而不會匹配規則D,因為規則E不區分大小寫。
訪問 http://localhost/a.xhtml 不會匹配規則F和規則G,http://localhost/a.XHTML不會匹配規則G,因為不區分大小寫。規則F,規則G屬於排除法,符合匹配規則但是不會匹配到,所以想想看實際應用中哪裡會用到。
訪問http://localhost/category/id/1111 則最終匹配到規則H,因為以上規則都不匹配,這個時候應該是nginx轉發請求給後端應用伺服器,例如FastCGI(php),tomcat (jsp),nginx作為方向代理伺服器存在。
所以實際使用中,個人覺得至少有三個匹配規則定義,如下:
#直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,官网如是说。
#这里是直接转发给后端应用服务器了,也可以是一个静态首页
# 第一个必选规则
location = / {
    proxy_pass http://tomcat:8080/index
}
 
# 第二个必选规则是处理静态文件请求,这是nginx作为http服务器的强项
# 有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用
location ^~ /static/ {
    root /webroot/static/;
}
location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ {
    root /webroot/res/;
}
 
#第三个规则就是通用规则,用来转发动态请求到后端应用服务器
#非静态文件请求就默认是动态请求,自己根据实际把握
#毕竟目前的一些框架的流行,带.php,.jsp后缀的情况很少了
location / {
    proxy_pass http://tomcat:8080/
}
不試都用這個Flag。 break – 中止Rewirte,不在繼續匹配redirect – 返回臨時重定向的HTTP狀態302permanent – 返回永久重定向的HTTP狀態301
注:last和break最大的不同在於
- break是終止當前location的rewrite檢測,而且不再進行location匹配- last是終止當前location的rewrite檢測,但會繼續重試location匹配並處理區塊中的rewrite規則
1、下面是可以用來判斷的表達式:
-f和!-f用來判斷是否存在檔案
-d和!-d用來判斷是否存在目錄
-e和!-e用來判斷是否存在檔案或目錄
-x和!-x用來判斷檔案是否可執行
2、下面是可以用來判斷的全域變數
$args #這個變數等於請求行中的參數。
$content_length #請求頭中的Content-length欄位。
$content_type #請求頭中的Content-Type欄位。
$document_root #目前請求在root指令中指定的值。
$host #請求主機頭字段,否則為伺服器名稱。
$http_user_agent #客戶端agent資訊
$http_cookie #客戶端cookie資訊$http_cookie #
客戶端cookie資訊
$request_body_file #客戶端請求主體資訊的臨時檔案名稱。
$request_method #客戶端請求的動作,通常為GET或POST。
$remote_addr #客戶端的IP位址。
$remote_port #客戶端的連接埠。
$remote_user #已經經過Auth Basic Module驗證的使用者名稱。
$request_filename #目前請求的檔案路徑,由root或alias指令與URI請求產生。
$query_string #與$args相同。
$scheme #HTTP方法(如http,https)。
$server_protocol #請求使用的協議,通常是HTTP/1.0或HTTP/1.1。
$server_addr #伺服器位址,在完成一次系統呼叫後可以確定這個值。
$server_name #伺服器名稱。
$server_port #請求到達伺服器的連接埠號碼。
$request_uri #包含請求參數的原始URI,不包含主機名,如:”/foo/bar.php?arg=baz”。
$uri #不含請求參數的目前URI,$uri不包含主機名,如」/foo/bar.html」。
$document_uri #與$uri相同。 例:http://localhost:88/test1/test2/test.php$host:localhost
$server_port:88
$request_uri:http://localhost:88/test1/test2/test8
$request_uri:http://localhost:88/test1/test2/test8
$request_uri:http://localhost:88/test1/test2/test.php
$document_uri:/test1/test2/test.php
$document_root:D:nginx/html
$request_filename:D:nginx/html/test1/test2/test.php
四、Redirect語法進行
多目錄轉成
多目錄轉成多目錄轉成
多目錄轉成多目錄到abc.domian.com/sort/2 => abc.domian.com/index.php?act=sort&name=abc&id=21.      ($host ~* (.*).domain.com) {🎜🎜
2.     set $sub_name $1;   
3.     rewrite ^/sort/(d+)/?$ /index.php?act=sort&cid=$sub_name&id=$1 last;
4.     }    /xxxx?id=123456

1.
     
rewrite ^/(d+)/(.+)/ /$2?id=$1 last;例如下面設定nginx在使用者使用ie的使用重定向到/nginx-ie目錄下:
1.      
if ($http_user_agent ~ MSIE) {2.     
rewrite ^(.*)$ /nginx-ie/$1 break;3.     
}目錄/ if (-d $request_filename){
2.
     rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;3.
      } 
location ~/.ht {2.     
         deny all;
3.          }
禁止多個目錄1.      
location ~ ^/(cron|templates)/ {2.     
         deny all;
3.     break;     }
禁止以/data開頭的檔案可以禁止/data/下多層級目錄下.log.txt等請求;1.   
1.   ~ ^/data {2.
              deny all;
3.          }
禁止單一目錄
不能禁止.log.txt能要求
1.     lo     
lo      /searchword/cron/ {
2.              deny all;
3.     
     }禁止單一檔案
1.      location ~ /data/sql/data.sql {
2.              deny all;
3.     
     }
給favicon.ico和robots.txt設定過期時間;這裡為favicon.ico為99 天,robots.txt為7天不記錄404錯誤日誌🠎1. ~(favicon.ico) {
2.                      log_not_found off;
3.     expires 99d;
4.     break;
5.      }6.
      7.
    7.        location ~(robots.txt) {
8.                      log_not_found off;
9.     expires 7d;
10. break;
11.      }11. 
     }
1.      location ^~ /html/scripts/loadhead_1.js {
2.                      access_log   off;
3.                      root /opt/lampp/htdocs/web;
4.     expires 600;
5.     break;
6.   }檔案反盜鏈並設定過期時間這裡的return 412 為自訂的http狀態碼,預設為403,方便找出正確的盜鏈的請求
「rewrite ^/ http://leech. c1gstudio.com/leech.gif;」顯示一張防盜鍊圖片「access_log off;」不記錄存取日誌,減輕壓力
「expires 3d」所有檔案3天的瀏覽器快取


1. 
location ~* ^.+.(jpg|jpeg|gif|png|swf|rar|zip|css|js)$ {2.     
valid_referers none blocked *.c1gstudio.com *.c1gstudio.net localhost 208.97.167.194;3.     
if ($invalid_referer) {4.     
    rewrite ^/ http://leech.c1gstudio.com/leech.gif;5.     
    return 412;6.     
    break;7.     
}8.                 access_log   off;
9.        root /opt/lampp/htdocs/web;
10. expires 3d;11. 
. 只充許固定ip訪問網站,並加上密碼
1.     
root  /opt/htdocs/www;2.     
allow   208.97.167.194;
3.     allow   222.33.1.2;
4.     allow   231.152.49.4;
5.     deny    all;
6.     auth_basic "C1G_ADMIN";
7.     auth_basic_user_file htpasswd;
將多級目錄下的文件轉成一個文件,增強seo效果
/job-123-456-789.html 指向/job/123/456/789.html


rewrite ^/job-([0-9]+)-([0-9]+)-([0-9]+).html$ /job/$1/$2/jobshow_$3.html last;
將根目錄下某個資料夾指向2級目錄如/shanghaijob/ 指向/area/shanghai/如果你將last改成permanent,那麼瀏覽器網址列顯是/location/shanghai/1.      

rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2 last;
上面例子有個問題是訪問/shanghai 時將不會匹配
1 .     rewrite ^/([0-9a-z]+)job$ /area/$1/ last;
2.      rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2 last;
這樣/shanghai 也可以訪問了,但頁面中的相對鏈接無法使用,如./list_1.html真實位址是/area /shanghia/list_1.html會變成/list_1.html,導至無法存取。 那我加上自動跳轉也是不行咯(-d $request_filename)它有條件是必需為真實目錄,而我的rewrite不是的,所以沒有效果
1.🜎 if (-d $request_filename){
2.     rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
3.      }
手動跳轉吧
1.     rewrite ^/([0-9a-z]+)job$ /$1job/ permanent;
2.     rewrite ^/([0-9a-z]+)job/(.*)$ /area/$1/$2 last;
文件和目錄不存在的時候重定向:1.  
if (!-e $request_filename) {🎜2.🎜     🎜🎜🎜proxy_pass http://127.0.0.1;🎜🎜🎜🎜3.🎜     🎜🎜🎜}🎜🎜🎜🎜網域跳轉🎜🎜}🎜🎜🎜🎜網域跳轉🎜🎜}🎜🎜🎜🎜網域跳轉🎜🎜}🎜🎜🎜
1.     伺服器
2.         {
3.                  聆聽      80;
4.                  伺服器名稱 jump.c1gstudio.com;
5.                  索引index.html索引.htm索引.php;
6.                   root /opt/lampp/htdocs/www;
7.                  重寫 ^/ http://www.c1gstudio.com/;8.
                  access_log  關閉;9.
          }多轉向轉向
1.
     server_name  www.c1gstudio.com www.c1gstudio.net;2.
                  索引index.html索引.htm索引.php;3.
                   root /opt/lampp/htdocs;4.
     if     if ($host ~ "c1gstudio.net") {
5.     重寫 ^(.*) http://www.c1gstudio.com$1 永久;
6.     }
if ($http_host ~* "^(.*).i.c1gstudio.com$") {
2.      重寫 ^(.*) http://top.yingjiesheng.com$1;
3.     break;
域名鏡
1.     server
2.         {
3.                  listen       80;
4.                  server_name  mirror.c1gstudio.com;
5.                  index index.html index.htm index.php;
6.                  root  /opt/lampp/htdocs/www;
7.                  rewrite ^/(.*) http://www.c1gstudio.com/$1 last;
8.     8.     
          access_log  off;9.     

     }

🎜 以上就介紹了nginx之location配置,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。 🎜 🎜 🎜
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn