原連接:https://www.baidu.com/benefit_detail?slug=bankofchina-20170320 目標連接:https://www.test.cn/boc location ~ /benefit_detail { if ($args ~* "slug=bankofchina-20170320") { rewrite ^/benefit_detail /boc? permanent; } try_files $uri $uri/ /index.php?$query_string; }
常見跳轉事例: 1,將www.myweb.com/connect 跳轉到connect.myweb.com rewrite ^/connect$ http://connect.myweb.com permanent; rewrite ^/connect/(.*)$ http://connect.myweb.com/$1 permanent; 2,將connect.myweb.com 301跳轉到www.myweb.com/connect/ if ($host = "connect.myweb.com"){ rewrite ^/(.*)$ http://www.myweb.com/connect/$1 permanent; } 3,myweb.com 跳轉到www.myweb.com if ($host != 'www.myweb.com' ) { rewrite ^/(.*)$ http://www.myweb.com/$1 permanent; } 4,www.myweb.com/category/123.html 跳轉爲 category/?cd=123 rewrite "/category/(.*).html$" /category/?cd=$1 last; 5,www.myweb.com/admin/ 下跳轉爲www.myweb.com/admin/index.php?s= if (!-e $request_filename){ rewrite ^/admin/(.*)$ /admin/index.php?s=/$1 last; } 6,在後面添加/index.php?s= if (!-e $request_filename){ rewrite ^/(.*)$ /index.php?s=/$1 last; } 7,www.myweb.com/xinwen/123.html 等xinwen下面數字+html的連接跳轉爲404 rewrite ^/xinwen/([0-9]+)\.html$ /404.html last; 8,http://www.myweb.com/news/radaier.html 301跳轉 http://www.myweb.com/strategy/ rewrite ^/news/radaier.html http://www.myweb.com/strategy/ permanent; 9,重定向 連接爲404頁面 rewrite http://www.myweb.com/123/456.php /404.html last; 10, 禁止htaccess location ~//.ht { deny all; } 11, 能夠禁止/data/下多級目錄下.log.txt等請求; location ~ ^/data { deny all; } 12, 禁止單個文件 location ~ /www/log/123.log { deny all; } 13, http://www.myweb.com/news/activies/2014-08-26/123.html 跳轉爲 http://www.myweb.com/news/activies/123.html rewrite ^/news/activies/2014\-([0-9]+)\-([0-9]+)/(.*)$ http://www.myweb.com/news/activies/$3 permanent; 14,nginx多條件重定向rewrite 若是須要打開帶有play的連接就跳轉到play,不過/admin/play這個不能跳轉 if ($request_filename ~ (.*)/play){ set $payvar '1';} if ($request_filename ~ (.*)/admin){ set $payvar '0';} if ($payvar ~ '1'){ rewrite ^/ http://play.myweb.com/ break; } 15,http://www.myweb.com/?gid=6 跳轉爲http://www.myweb.com/123.html if ($request_uri ~ "/\?gid\=6"){return http://www.myweb.com/123.html;} 正則表達式匹配,其中: * ~ 爲區分大小寫匹配 * ~* 爲不區分大小寫匹配 * !~和!~*分別爲區分大小寫不匹配及不區分大小寫不匹配 文件及目錄匹配,其中: * -f和!-f用來判斷是否存在文件 * -d和!-d用來判斷是否存在目錄 * -e和!-e用來判斷是否存在文件或目錄 * -x和!-x用來判斷文件是否可執行 flag標記有: * last 至關於Apache裏的[L]標記,表示完成rewrite * break 終止匹配, 再也不匹配後面的規則 * redirect 返回302臨時重定向 地址欄會顯示跳轉後的地址 * permanent 返回301永久重定向 地址欄會顯示跳轉後的地址
nginx各個內置變量含義請參考: https://blog.csdn.net/wanglei_storage/article/details/66004933
【nginx try_files的理解】 以 try_files $uri $uri/ /index.php; 爲例,當用戶請求 http://servers.blog.ustc.edu.cn/example 時, 這裏的 $uri 就是 /example。try_files 會到硬盤裏嘗試找這個文件。若是存在名爲 /$root/example(其中 $root 是 WordPress 的安裝目錄)的文件,就直接把這個文件的內容發送給用戶。顯然,目錄中沒有叫 example 的 文件。而後就看 $uri/,增長了一個 /,也就是看有沒有名爲 /$root/example/ 的目錄。又找不到, 就會 fall back 到 try_files 的最後一個選項 /index.php,發起一個內部 「子請求」,也就是至關於 nginx 發起一個 HTTP 請求到 http://servers.blog.ustc.edu.cn/index.php。這個請求會被 location ~ \.php$ { ... } catch 住,也就是進入 FastCGI 的處理程序。而具體的 URI 及參數是在 REQUEST_URI 中傳遞給 FastCGI 和 WordPress 程序的,所以不受 URI 變化的影響
[$request_uri解釋] $request_uri就是完整url中刨去最前面$host剩下的部分,好比http://www.baidu.com/pan/beta/test1?fid=3這個url, 去掉www.baidu.com剩下的就是了,日誌裏會看到打印出來的$request_uri實際上是/pan/beta/test1?fid=3。 若是隻訪問www.baidu.com,$request_uri裏也會有個/的。 if ($request_uri ~* "^/$") 表示url中只有域名,後面不跟任何東西,好比www.baidu.com。 if ($request_uri ~* "test") 表示域名後面那串兒只要包含test這個關鍵詞,就可匹配成功, 好比www.baidu.com/pan/beta/test3 if ($request_uri ~* "^/$"){ rewrite ^ http://kj.fnwtv.com/index.html permanent; } if ($request_uri !~* "^/$") { rewrite ^ http://www.fnwtv.com/ permanent; }
【Nginx if 條件判斷參考】 https://www.cnblogs.com/saneri/p/6257188.html
location proxy_pass 後面的url 加與不加/的區別參考: https://blog.51cto.com/huangzp/1954575