2019-10-23 seo達人
文章目錄
rewrite在if中的用法
rewrite中break和last的用法
1.break和last在location{}外部時
2.break和last在location{}內(nèi)部時
3.break和last用法總結(jié)
return的用法
rewrite的語法規(guī)則
rewrite應(yīng)用實例
1.域名跳轉(zhuǎn)(域名重定向)
2.http跳轉(zhuǎn)https
3.跳轉(zhuǎn)二級目錄
4.動靜態(tài)請求分離
5.防盜鏈配置
6.偽靜態(tài)(將靜態(tài)頁面重寫為動態(tài))
7.多個if并用
rewrite在if中的用法
格式:if (條件判斷) { 具體的rewrite規(guī)則 }
if條件判斷語句由Nginx內(nèi)置變量、邏輯判斷符號和目標(biāo)字符串三部分組成。
其中,內(nèi)置變量是Nginx固定的非自定義的變量,如,$request_method, $request_uri等。
邏輯判斷符號,有=, !=, ~, ~, !~, !~
!表示相反的意思,~為匹配符號,它右側(cè)為正則表達式,區(qū)分大小寫,而~為不區(qū)分大小寫匹配。
目標(biāo)字符串可以是正則表達式,通常不用加引號,但表達式中有特殊符號時,比如空格、花括號、分號等,需要用單引號引起來。
1
2
3
4
5
示例1:當(dāng)http請求方法為post時,返回403狀態(tài)碼
if ($request_method = POST)
{
return 403;
}
1
2
3
4
示例2:通過瀏覽器標(biāo)識匹配關(guān)鍵字,禁止IE瀏覽器訪問
if ($http_user_agent ~ MSIE)
{
return 403;
}
1
2
3
4
限制多個瀏覽器:
if ($http_user_agent ~ "MSIE|firefox|Chrome")
{
return 403;
}
1
2
3
4
示例3:當(dāng)請求的文件不存在時,進行重定向或return狀態(tài)碼等處理操作
if(!-f $request_filename)
{
rewrite 語句;
}
1
2
3
4
示例4:判斷uri中某個參數(shù)的內(nèi)容
if($request_uri ~ 'gid=\d{6,8}/')
{
rewrite 語句;
}
1
2
3
4
rewrite中break和last的用法
兩個指令用法相同,但含義不同,需要放到rewrite規(guī)則的末尾,用來控制重寫后的鏈接是否繼續(xù)被nginx配置執(zhí)行(主要是rewrite、return指令)。
1.break和last在location{}外部時
測試示例:
server{
listen 80;
server_name test.com;
root /data/wwwroot/test.com;
rewrite /1.html /2.html;
rewrite /2.html /3.html;
}
1
2
3
4
5
6
7
8
示例1:在rewrite 指令后面添加break
server{
listen 80;
server_name test.com;
root /data/wwwroot/test.com;
rewrite /1.html /2.html break;
rewrite /2.html /3.html;
}
1
2
3
4
5
6
7
8
示例2:當(dāng)break后面還有l(wèi)ocation{}的情況
server{
listen 80;
server_name test.com;
root /data/wwwroot/test.com;
rewrite /1.html /2.html break;
rewrite /2.html /3.html;
location /2.html {
return 403;
}
}
1
2
3
4
5
6
7
8
9
10
11
2.break和last在location{}內(nèi)部時
測試示例:
server{
listen 80;
server_name test.com;
root /data/wwwroot/test.com;
location / {
rewrite /1.html /2.html;
rewrite /2.html /3.html;
}
location /2.html
{
rewrite /2.html /a.html;
}
location /3.html
{
rewrite /3.html /b.html;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
示例1:在rewrite后面添加break
server{
listen 80;
server_name test.com;
root /data/wwwroot/test.com;
location / {
rewrite /1.html /2.html break;
rewrite /2.html /3.html;
}
location /2.html
{
rewrite /2.html /a.html;
}
location /3.html
{
rewrite /3.html /b.html;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
示例2:在rewrite后面添加last
server{
listen 80;
server_name test.com;
root /data/wwwroot/test.com;
location / {
rewrite /1.html /2.html last;
rewrite /2.html /3.html;
}
location /2.html
{
rewrite /2.html /a.html;
}
location /3.html
{
rewrite /3.html /b.html;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
3.break和last用法總結(jié)
1.當(dāng)rewrite規(guī)則在location{}外,break和last作用一樣,遇到break或last后,其后續(xù)的rewrite/return語句不再執(zhí)行。但后續(xù)有l(wèi)ocation{}的話,還會近一步執(zhí)行l(wèi)ocation{}里面的語句,前提是請求能匹配該location
2.當(dāng)rewrite規(guī)則在location{}里,遇到break后,本location{}與其他location{}的所有rewrite/return規(guī)則都不再執(zhí)行
3.當(dāng)rewrite規(guī)則在location{}里,遇到last后,本location{}里后續(xù)rewrite/return規(guī)則不執(zhí)行,但重寫后的url再次從頭匹配所有l(wèi)ocation
return的用法
該指令一般用于對請求的客戶端直接返回響應(yīng)狀態(tài)碼。在該作用域內(nèi)return后面的所有nginx配置都是無效的,可以使用在server、location以及if配置中,除了支持跟狀態(tài)碼,還可以跟字符串或者url鏈接。
示例1:直接返回狀態(tài)碼
server{
listen 80;
server_name www.test.com;
return 403;
rewrite www.test.net;
}
1
2
3
4
5
6
示例2:當(dāng)return在if 判斷中時
server {
.....
if ($request_uri ~ ".password|.bak")
{
return 404;
rewrite /(.*) /index.html;
}
.....
}
1
2
3
4
5
6
7
8
9
10
示例3:返回字符串
server{
listen 80;
server_name www.test.com;
return 200 "hello";
}
1
2
3
4
5
示例4:返回nginx變量
location /1.html {
return 200 "$host $request_uri";
}
1
2
3
示例5:返回url
server{
listen 80;
server_name www.test.com;
return http://www.test.com/index2.html;
}
1
2
3
4
5
示例6:返回html代碼
if ($http_referer ~ 'baidu.com')
{
return 200 "<html><script>window.location.href='//$host$request_uri';</script></html>";
}
1
2
3
4
rewrite的語法規(guī)則
格式:rewrite regex replacement [flag]
rewrite 配置可以在server、location以及if配置段內(nèi)生效
regex 是用于匹配URI的正則表達式,其不會匹配到$host(域名)
replacement 是目標(biāo)跳轉(zhuǎn)的URI,可以以http://或者https://開頭,也可以省略掉$host,直接寫$request_uri部分
flag 用來設(shè)置rewrite對URI的處理行為,其中有break、last、rediect、permanent,其中break和last在前面已經(jīng)介紹過,rediect和permanent的區(qū)別在于,前者為臨時重定向(302),而后者是永久重定向(301),對于用戶通過瀏覽器訪問,這兩者的效果是一致的。
但是,對于搜索引擎爬蟲來說就有區(qū)別了,使用301更有利于SEO。所以,建議replacemnet是以http://或者https://開頭的,flag使用permanent。
示例1:域名跳轉(zhuǎn)
location / {
rewrite /(.*) http://www.test.com/$1 permanent;
}
1
2
3
示例2:域名跳轉(zhuǎn)的第二種寫法
location / {
rewrite /. http://www.test.com$request_uri permanent;
}
1
2
3
示例3:文件跳轉(zhuǎn)
server{
listen 80;
server_name www.test.com;
root /data/wwwroot/test.com;
index index.html;
if ($request_uri !~ '^/web/')
{
rewrite /(.) /web/$1 redirect;
}
}
1
2
3
4
5
6
7
8
9
10
錯誤寫法1:
server{
listen 80;
server_name www.test.com;
root /data/wwwroot/test.com;
index index.html;
rewrite /(.*) /web/$1 redirect;
}
1
2
3
4
5
6
7
錯誤寫法2:
server{
listen 80;
server_name www.test.com;
root /data/wwwroot/test.com;
index index.html;
rewrite /(.*) /web/$1 break;
}
1
2
3
4
5
6
7
rewrite應(yīng)用實例
1.域名跳轉(zhuǎn)(域名重定向)
單個域名的情況:
server{
listen 80;
server_name www.test.com;
rewrite /(.) http://www.test.net/$1 permanent;
}
1
2
3
4
5
多個域名的情況:
server{
listen 80;
server_name www.test.com www.test.net;
if ($host != 'www.test.net')
{
rewrite /(.) http://www.test.net/$1 permanent;
}
}
1
2
3
4
5
6
7
8
2.http跳轉(zhuǎn)https
server{
listen 80;
server_name www.test.com;
rewrite /(.) https://www.test.com/$1 permanent;
}
1
2
3
4
5
3.跳轉(zhuǎn)二級目錄
server{
listen 80;
server_name bbs.test.com;
rewrite /(.) http://www.test.com/bbs/$1 last;
}
1
2
3
4
5
4.動靜態(tài)請求分離
server{
listen 80;
server_name www.test.com;
location ~ ..(jpg|jpeg|gif|css|png|js)$
{
rewrite /(.*) http://img.test.com/$1 permanent;
}
}
1
2
3
4
5
6
7
8
第二種寫法:
server{
listen 80;
server_name www.test.com;
if ( $uri ~ 'jpg|jpeg|gif|css|png|js$')
{
rewrite /(.) http://img.test.com/$1 permanent;
}
}
1
2
3
4
5
6
7
8
5.防盜鏈配置
server{
listen 80;
server_name www.test.com;
location ~ ^.+.(jpg|jpeg|gif|css|png|js|rar|zip|flv)$
{
valid_referers none blocked server_names .test.com
if ($invalid_referer)
{
return 403;
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
http_referer表示從哪兒點擊進網(wǎng)站的,比如從百度搜索引擎訪問的
valid_referers:白名單
invalid_referer:無效的(未在白名單中定義的)
none:允許referer為空(也就是允許直接訪問,未從其他站點跳轉(zhuǎn)的請求)
blocked:允許來源地址不含http/https
6.偽靜態(tài)(將靜態(tài)頁面重寫為動態(tài))
location / {
rewrite ^([^.])/topic-(.+).html$ $1/portal.php?mod=topic&topic=$2 last;
rewrite ^([^.])/forum-(\w+)-([0-9]+).html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
rewrite ^([^.])/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;
rewrite ^([^.])/group-([0-9]+)-([0-9]+).html$ $1/forum.php?mod=group&fid=$2&page=$3 last;
rewrite ^([^.])/space-(username|uid)-(.+).html$ $1/home.php?mod=space&$2=$3 last;
rewrite ^([^.])/(fid|tid)-([0-9]+).html$ $1/index.php?action=$2&value=$3 last;
}
1
2
3
4
5
6
7
8
7.多個if并用
location /{
set $a 0;
if ($document_uri !~ '^/abc')
{
set $a "${a}1"; #uri不以/abc開頭時,$a的值變?yōu)?1
}
if ($http_user_agent ~ 'ie6|firefox')
{
set $a "${a}2"; #瀏覽器標(biāo)識包含ie6或者Firefox時,$a的值變?yōu)?12
}
if ($a = "012") #當(dāng)滿足前兩個if判斷時,重寫url
{
rewrite /(.) /abc/$1 redirect;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
藍藍設(shè)計( www.teruid.com )是一家專注而深入的界面設(shè)計公司,為期望卓越的國內(nèi)外企業(yè)提供卓越的UI界面設(shè)計、BS界面設(shè)計 、 cs界面設(shè)計 、 ipad界面設(shè)計 、 包裝設(shè)計 、 圖標(biāo)定制 、 用戶體驗 、交互設(shè)計、 網(wǎng)站建設(shè) 、平面設(shè)計服務(wù)。
藍藍設(shè)計的小編 http://www.teruid.com