rewrite是nginx一個特別重要的指令,該指令可使用正則表達式改寫URI。能夠指定一個或多個rewrite指令,按順序匹配。php
~ 區分大小寫匹配 ~* 不區分大小寫匹配 !~ 和 !~* 區分大小寫不匹配及不區分大小寫不匹配
-f和!-f 判斷是否存在文件 -d和!-d 判斷是否存在目錄 -e和!-e 判斷是否存在文件或目錄 -x和!-x 判斷文件是否可執行
set if return break rewrite
1.使用範圍:server,location,if; 2.中斷當前相同做用域的其餘nginx配置。
1.使用範圍:server,location 2.檢查一個條件是否符合。If指令不支持嵌套,不支持多個條件&&和||處理。
1.格式:return code ;
2.使用範圍:server,location,if;
3.結束規則的執行並返回狀態碼給客戶端。css
1.使用環境:server,location,if 2.定義一個變量,並給變量賦值。變量的值能夠爲文本、變量或者變量的組合。 3.set $var "hello world"
rewrite regex replacement [flag] flag標誌位有四種: break:中止rewrite檢測,也就是說當含有break flag的rewrite語句被執行時,該語句就是rewrite的最終結果。 last:中止rewrite檢測,可是跟break有本質的不一樣,last的語句不必定是最終結果。 redirect:返回302臨時重定向,通常用於重定向到完整的URL(包含http:部分) permanent:返回301永久重定向,通常用於重定向到完整的URL(包含http:部分)
if( !-e $request_filename ) { rewrite ^/(.*)$ index.php last; }
rewrite ^/(\d+)/(.+)/ /$2?id=$1 last;
if( $http_user_agent ~ MSIE) { rewrite ^(.*)$ /ie/$1 break; }
location ~ ^/data
{
deny all;
}html
location ~ .*\.(sh|flv|mp3)$ { return 403; }
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; }
location ~*^.+\.(jpg|jpeg|gif|png|swf|rar|zip|css|js)$ { valid_referers none blocked *.linuxidc.com*.linuxidc.net localhost 208.97.167.194; if ($invalid_referer) { rewrite ^/ http://img.linuxidc.net/leech.gif; return 412; break; } access_log off; root /opt/lampp/htdocs/web; expires 3d; break; }
/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;
server { listen 80; server_name jump.linuxidc.com; index index.html index.htm index.php; root /opt/lampp/htdocs/www; rewrite ^/ http://www.linuxidc.com/; access_log off; }
server_name www.linuxidc.comwww.linuxidc.net; index index.html index.htm index.php; root /opt/lampp/htdocs; if ($host ~ "linuxidc\.net") { rewrite ^(.*) http://www.linuxidc.com$1permanent; }
arg_PARAMETER #這個變量包含GET請求中,若是有變量PARAMETER時的值。 args #這個變量等於請求行中(GET請求)的參數,如:foo=123&bar=blahblah; binary_remote_addr #二進制的客戶地址。 body_bytes_sent #響應時送出的body字節數數量。即便鏈接中斷,這個數據也是精確的。 content_length #請求頭中的Content-length字段。 content_type #請求頭中的Content-Type字段。 cookie_COOKIE #cookie COOKIE變量的值 document_root #當前請求在root指令中指定的值。 document_uri #與uri相同。 host #請求主機頭字段,不然爲服務器名稱。 hostname #Set to themachine’s hostname as returned by gethostname http_HEADER is_args #若是有args參數,這個變量等於」?」,不然等於」",空值。 http_user_agent #客戶端agent信息 http_cookie #客戶端cookie信息 limit_rate #這個變量能夠限制鏈接速率。 query_string #與args相同。 request_body_file #客戶端請求主體信息的臨時文件名。 request_method #客戶端請求的動做,一般爲GET或POST。 remote_addr #客戶端的IP地址。 remote_port #客戶端的端口。 remote_user #已經通過Auth Basic Module驗證的用戶名。 request_completion #若是請求結束,設置爲OK。 當請求未結束或若是該請求不是請求鏈串的最後一個時,爲空(Empty)。 request_filename #當前請求的文件路徑,由root或alias指令與URI請求生成。 request_uri #包含請求參數的原始URI,不包含主機名,如:」/foo/bar.php?arg=baz」。不能修改。 scheme #HTTP方法(如http,https)。 server_protocol #請求使用的協議,一般是HTTP/1.0或HTTP/1.1。 server_addr #服務器地址,在完成一次系統調用後能夠肯定這個值。 server_name #服務器名稱。 server_port #請求到達服務器的端口號。
[轉] 來自:https://mp.weixin.qq.com/s/4GGvl4zcuY4iTr0vS0321glinux