Rewrite正則相關(guān)指令詳解:
nginx的rewrite相當(dāng)于apache的rewriterule(大多數(shù)情況下可以把原有apache的rewrite規(guī)則加上引號(hào)就可以直接使用)腌闯,它可以用在server,location 和IF條件判斷塊中,命令 格式如下: rewrite regex replacement flag rewrite 正則表達(dá)式 替換目標(biāo) flag標(biāo)記
正則表達(dá)式匹配,有以下幾種特殊寫法:
~ 為區(qū)分大小寫匹配
~* 為不區(qū)分大小寫匹配
!~和!~*分別為區(qū)分大小寫不匹配及不區(qū)分大小寫不匹配
文件及目錄匹配判斷有以下幾種寫法:
-f和!-f用來判斷是否存在文件
-d和!-d用來判斷是否存在目錄
-e和!-e用來判斷是否存在文件或目錄
-x和!-x用來判斷文件是否可執(zhí)行
flag標(biāo)記可以用以下幾種格式:
last - 基本上都用這個(gè)Flag。
break - 中止Rewirte,不在繼續(xù)匹配
redirect - 返回臨時(shí)重定向的HTTP狀態(tài)302
permanent - 返回永久重定向的HTTP狀態(tài)301
使用last和break實(shí)現(xiàn)URI重寫昵观,瀏覽器地址欄不變草添。而且兩者有細(xì)微差別酪劫,使用alias指令必須用last標(biāo)記;使用proxy_pass指令時(shí),需要使用break標(biāo)記珊蟀。Last標(biāo)記在本條rewrite規(guī)則執(zhí)行完畢后菊值,會(huì)對(duì)其所在server{......}標(biāo)簽重新發(fā)起請(qǐng)求,而break標(biāo)記則在本條規(guī)則匹配完成后育灸,終止匹配腻窒。
1、
目的:
當(dāng)用戶訪問[http://192.168.100.10/abc/a/1.html](http://192.168.100.10/abc/a/1.html) 地址時(shí)磅崭,
通過redirect 重定向至[http://192.168.100.10/ccc/bbb/2.html](http://192.168.100.10/ccc/bbb/2.html)
實(shí)驗(yàn):重定向得網(wǎng)站得位置在當(dāng)前網(wǎng)站目錄位置下得 /ccc/bbb/2.html
server {
location /abc {
rewrite .* /ccc/bbb/2.html permanent;
只要匹配到abc 就會(huì)重寫 重寫后尋找得地址是/ccc/bbb/2.html
permanent: 寫得話 就會(huì)變成新得重定向地址 不寫得話還是輸入得地址但是內(nèi)容是重定向后得內(nèi)容
}
2儿子、
目的:
利用正則中的”()和\1 “,
替換url中一部分的內(nèi)容砸喻。
將http://192.168.100.10/2016/a/b/c/1.html](http://192.168.100.10/2016/a/b/c/1.html)
換http://192.168.100.10/2017/a/b/c/1.html](http://192.168.100.10/2017/a/b/c/1.html)
實(shí)驗(yàn):
server {
location /2016 {
rewrite ^/2016/(.*)$ /2017/$1 permanent;
只要匹配到以2016開頭不管什么結(jié)尾得就會(huì)重寫柔逼,重寫成2017 $1就是調(diào)用括號(hào)里得變量
permanent: 寫得話 就會(huì)變成新得重定向地址 不寫得話還是輸入得地址但是內(nèi)容是重定向后得容
}
}
3蒋譬、
目的:
location { rewrite } 只能替換url中的目錄路徑,
使用if (){rewrite}可以替換協(xié)議主機(jī)目錄愉适。
將[http://www.taobao.com]
換[http://jd.com](http://jd.com)
實(shí)驗(yàn):
server{
if ( $host ~* taobo.com) {
rewrite .* [http://jd.com](http://jd.com) permanent;
如果$host也就是域名匹配taobao.com
就重寫 成京東得網(wǎng)站
}
}
4犯助、
目的: 上一個(gè)試驗(yàn)中,不論輸入的url中頁(yè)面內(nèi)容是什么:
http://qianfeng.com/1.html
其結(jié)果维咸。全部都重定向至
http://cloud.com/1.html主頁(yè)剂买。
示例:
將[http://taobao.com/ccc/bbb/2.html](http://taobao.com/ccc/bbb/2.html)
換成
[http://cloud.com/ccc/bbb/2.html](http://cloud.com/ccc/bbb/2.html) 實(shí)驗(yàn):
server {
if ( $host ~* taobao.com ) {
rewrite .* [http://cloud.com$request_uri](http://cloud.com$request_uri) permanent;
如果$host也就是域名匹配taobao.com
就重寫 到cloud.com
$request_uri : 就是在taobao.com后面得路徑 ,使用變量直接寫到重寫后得網(wǎng)站中
}
}
注意:
http://taobao.com/ccc/bbb/2.html沒有ccc/bbb/2.html這個(gè)文件這是沒有的
5癌蓖、
目的: 在訪問的url是目錄時(shí)瞬哼,在URL自動(dòng)添加一個(gè)“/” (如果不是目錄,則不加/)
(但是先做個(gè)判斷租副,是目錄才需要加倒槐,不是目錄就不加。)當(dāng)用戶訪問網(wǎng)站時(shí)附井,輸入的URL不完整讨越。
1.輸入的URL是目錄時(shí),自動(dòng)添加“/”
http://www.baidu.com/abc
2.輸入的URL是文件時(shí)永毅,不添加“/”
http://www.baidu.com/abc/index.html
3.輸入的URL是目錄把跨,但已經(jīng)添加"/"時(shí),不添加“/”
http://www.baidu.com/abc/ 實(shí)驗(yàn): server {
if ( -d $requset_filename ) {
rewrite ^(.*) ([^/])$ [http://$host$1$2/](http://$host$1$2/) permanent;
判斷是不是目錄是目錄得話就重寫
如果是目錄得話就重寫 什么開頭都可以 不是以 / 結(jié)尾 都換成加 / 得
}
}
6沼死、
目的: http://www.tianyun.com/login/tianyun.html
轉(zhuǎn)為
http://www.tianyun.com/reg/login.php?user=tianyun 實(shí)驗(yàn): location /login {
rewrite ^/login/(.*)\.html$ /reg/login.php?user=$1;
以/login開頭中間都可以 以.html結(jié)尾 重寫
}
7着逐、 目的: 目錄的表達(dá)方式發(fā)生變化。
原先的“-”分割意蛀,變成了“/"目錄層次耸别。
將
http://www.tianyun.com/qf/11-22-33/1.html
轉(zhuǎn)換為
http://www.tianyun.com/qf/11/22/33/1.html 實(shí)驗(yàn): location /qf {
rewrite ^/qf/([0-9]+) - ([0-9]+) - ([0-9]+) (.*) $ /qf/$1/$2/$3$4 permanent;
root /usr/share/nginx/html;
域名或者IP后面匹配到qf 就重寫 匹配以/qf開頭的 以什么結(jié)尾就可以 重寫成qf/11/22/33/1.index
獲取網(wǎng)站內(nèi)容
}
8、
目的:
引用原URL當(dāng)中的信息县钥,重定向至目標(biāo)的URL
http://alice.taobao.com ==> http://www.taobao.com/alice
http://jack.taobao.com ==> http://www.taobao.com/jack
實(shí)驗(yàn):
if ( $host ~* “www.taobao.com$” ) {
break;
}
防止死循環(huán)只要匹配到 [www.taobao.com](http://www.taobao.com) 就跳出
if ( $host ~* “^(.*)\.taobao\com$” ) {
set $user $1;
rewrite .* [http://www.taobao.com/$user](http://www.taobao.com/$user) permanent;
域名前匹配所有 .taobao.com
set=設(shè)置變量
重寫所有 到http://www.taobao.com 后把if判斷的第一個(gè)變量設(shè)置成user寫到后面
}
9秀姐、
目的: 如果訪問的.sh結(jié)尾的文件則返回403操作拒絕錯(cuò)誤 實(shí)驗(yàn):
location .*\.sh$ {
return 403; 匹配到.sh 就返回403
也可以寫成:
rewrite .* [http://www.taobao.com](http://www.taobao.com) [](http://www.taobao.com;) permanent;
}
Nginx Rewrite如何301跳轉(zhuǎn) 如:將54php.cn 跳轉(zhuǎn)到 www.54php.cn
server {
listen 80;
server_name www.54php.cn 54php.cn;
if ($host != 'www.54php.cn' ) {
rewrite ^/(.*)$ http://www.54php.cn/$1 permanent;
}
}
根據(jù)文件類型設(shè)置過期時(shí)間:
location ~* \.(js|css|jpg|jpeg|gif|png|swf)$ {
if (-f $request_filename) {
expires 1h;
break;
}
}