亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Nginx中Rewrite的使用

發布時間:2020-06-09 22:02:00 來源:億速云 閱讀:212 作者:元一 欄目:云計算
Nginx 

Nginx (engine x) 是一個高性能的HTTP和反向代理web服務器,同時也提供了IMAP/POP3/SMTP服務。Nginx是由伊戈爾·賽索耶夫為俄羅斯訪問量第二的Rambler.ru站點(俄文:Рамблер)開發的,第一個公開版本0.1.0發布于2004年10月4日。

其將源代碼以類BSD許可證的形式發布,因它的穩定性、豐富的功能集、示例配置文件和低系統資源的消耗而聞名。2011年6月1日,nginx 1.0.4發布。

Nginx是一款輕量級的Web 服務器/反向代理服務器及電子郵件(IMAP/POP3)代理服務器,在BSD-like 協議下發行。其特點是占有內存少,并發能力強,事實上nginx的并發能力在同類型的網頁服務器中表現較好

Nginx優點
Nginx 可以在大多數 UnixLinux OS 上編譯運行,并有 Windows 移植版。 Nginx 的1.4.0穩定版已經于2013年4月24日發布,一般情況下,對于新建站點,建議使用最新穩定版作為生產版本,已有站點的升級急迫性不高。
Nginx 的源代碼使用 2-clause BSD-like license。
Nginx 是一個很強大的高性能Web和反向代理服務,它具有很多非常優越的特性:
在連接高并發的情況下,Nginx是Apache服務不錯的替代品:Nginx在美國是做虛擬主機生意的老板們經常選擇的軟件平臺之一。能夠支持高達 50,000 個并發連接數的響應,感謝Nginx為我們選擇了 epoll and kqueue作為開發模型。

一、Nginx環境準備

一臺nginx服務器提供 www.accp.com 的網頁。
1、安裝rpm源
rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
2、直接用yum安裝nginx和bind
yum install nginx bind -y
3、DNS域名解析
vim /etc/named.conf

Nginx中Rewrite的使用

vim /etc/named.rfc1912.zones 
##復制添加一段
zone "accp.com" IN {
        type master;
        file "accp.com.zone";
        allow-update { none; };
};

Nginx中Rewrite的使用

cd /var/named
cp -p named.localhost accp.con.zone
vim accp.con.zone 

Nginx中Rewrite的使用

4、修改nginx配置文件
vim /etc/nginx/conf.d/default.conf

Nginx中Rewrite的使用

5、啟動服務,關閉防火墻
systemctl stop firewalld.service 
setenforce 0

systemctl start named
systemctl start nginx

二、Rewrite 介紹

2.1、Rewrite跳轉場景

URL 看起來更規范、合理;
企業會將動態URL地址偽裝成靜態地址提供服務;
網址換域名后,讓舊的訪問跳轉到新的域名上;
服務端某些業務調整

2.2、Rewrite 實用場景

1、Nginx跳轉需求的實現方式:
使用rewrite進行匹配跳轉;
使用 if 匹配全局變量后跳轉;
使用 location 匹配再跳轉
2、rewrite放在 server { },if { };location{ }段中;
3、對域名或參數字符串:
使用 if 全局變量匹配;
使用 proxy_pass 反向代理

2.3、常用的正則表達式元字符

Nginx中Rewrite的使用

2.4、Rewrite 命令

語法:

Nginx中Rewrite的使用

flag標記說明:

Nginx中Rewrite的使用

last和break比較:

Nginx中Rewrite的使用

2.5、location 分類

分類:
location = patt { } [精準匹配]
location patt { } [一般匹配]
location ~ patt { } [正則匹配]
正則匹配的常用表達式:

Nginx中Rewrite的使用

2.6、location 優先級

相同類型的表達式,字符串長的會優先匹配;
按優先級排列:
= 類型
^~ 類型表達式
正則表達式(~ 和 ~*)類型
常規字符串匹配類型,按前綴匹配
通用匹配(/),如果沒有其他匹配,任何請求都會匹配到

三、具體場景

3.1、場景一:基于域名的跳轉
實驗環境:公司舊域名www.accp.com,因業務需求有變更,需要使用新域名www.newaccp.com代替.

需求:

不能廢除舊域名
從舊域名跳轉到新域名,且保持其參數不變
1、修改nginx的配置文件
vim /etc/nginx/conf.d/default.conf
//添加一段
if ($host = 'www.accp.com') {
        rewrite ^/(.*)$ http://www.newaccp.com/$1 permanent;
    }

//域名重定向:就是當訪問www.wang.com時,將激動跳轉到www.new.wang.com域名。
//permanent:表示永久的意思。

Nginx中Rewrite的使用

2、DNS服務提供新域名的解析
vim /etc/named.rfc1912.zones
//復制之前的accp域名聲明段修改

Nginx中Rewrite的使用

cd /var/named
cp -p accp.com.zone newaccp.com.zone

Nginx中Rewrite的使用

3、重啟服務
systemctl stop nginx
systemctl start nginx
systemctl restart named
驗證:在win10的瀏覽器中輸入新域名www.accp.com

Nginx中Rewrite的使用

3.2、場景二:基于客戶端IP地址訪問跳轉

實驗要求:今天公司業務版本上線,所有IP訪問任何內容都顯示一個固定維護頁面,只有公司的IP才能訪問正常。
公司IP地址:192.168.111.146
PC客戶端:192.168.111.140
把上一個實驗的nginx配置部分刪除,以防影響下面的實驗。
1、修改nginx的配置文件,重啟服務
vim /etc/nginx/conf.d/default.conf
listen      80;
server_name     www.accp.coom;
#charset koi8-r;
access_log /var/log/nginx/www.accp.com-access.log main;     
#設置是否合法的IP標志
set $rewrite true;
#判斷是否為合法IP
if ($remote_addr = "192.168.111.146"){
    set $rewrite false;
}
#非法IP進行判斷打上標記
if ($rewrite = true){
    rewrite (.+) /main.html;
}
#匹配標記進行跳轉站點
location = /main.html {
    root /usr/share/nginx/html;
}

systemctl stop nginx
systemctl start nginx  

Nginx中Rewrite的使用

2、給 main.html 添加自定義頁而內容

cd /usr/share/nginx/html

vim main.html
<html>
 <head>
<meta charset="utf-8">
 <title>test網站</title>
 </head>
<body>
    <h2>網站維護中,請稍等~~~</h2>
</body>
</html>

systemctl restart nginx 
用公司的IP地址訪問:

Nginx中Rewrite的使用

通過客戶端IP地址訪問:

Nginx中Rewrite的使用

3.3、場景三:基于舊、新域名跳轉并加目錄

例如:現在訪問的是 http://bbs.accp.com ,現在需要將這個域名下面的發帖都跳轉到 http://www.accp.com/bbs ,注意保持域名跳轉后的參數不變。
1、在nginx配置文件中添加以下代碼
vim /etc/nginx/conf.d/default.conf 
listen      80;
    server_name     bbs.accp.coom;   

    #charset koi8-r;
    access_log /var/log/nginx/www.accp.com-access.log; 
      #添加一段
    location /post {
        rewrite (.+) http://www.accp.com/bbs$1 permanent;
    }    

Nginx中Rewrite的使用

2、修改域名,重啟服務
cd /var/named
vim accp.com.zone #把里面的 www 換成 bbs 不然無法解析。

systemctl restart nginx
systemctl restart named

echo "nameserver 192.168.111.145" > /etc/resolv.conf

Nginx中Rewrite的使用

3、在瀏覽器上訪問 http://bbs.accp.com/post/a.html ,會幫我們自動跳轉 http://www.accp.com/bbs/post/a.html , 此時域名跳轉后的參數并沒有變還是bbs

Nginx中Rewrite的使用

3.4、場景四:基于參數匹配跳轉

例如:瀏覽器訪問http://www.accp.com/100-(100|200)-100.html,會自動跳轉到 http://www.accp.com 的頁面。
1、修改nginx的配置文件,添加以下代碼
listen      80;
    server_name     www.accp.coom;   

    #charset koi8-r;
    access_log /var/log/nginx/www.accp.com-access.log main; 
    ## 添加一段
    if ($request_uri ~ ^/100-(100|200)-(\d+).html$) {
        rewrite (.*) http://www.accp.com permanent;
    }

Nginx中Rewrite的使用

server_name www.accp.com;
if ($request_uri ~ ^/100-(100|200)-(\d+).html$) {
rewrite (.*) http://www.test.com permanent;
}
123456

2、DNS解析www。并重啟服務
 cd /var/named
vim accp.com.zone

systemctl restart nginx
systemctl restart named

Nginx中Rewrite的使用

3、在瀏覽器訪問 http://www.accp.com/100-100-100.html,就會幫我們自動跳轉到www.accp.com網站

Nginx中Rewrite的使用

Nginx中Rewrite的使用

3.5、場景五:基于目錄下所有php文件跳轉

例如,我們訪問 http://www.accp.com/upload/1.php,會自動跳轉到首頁www.accp.com。
1、修改nginx的配置文件,添加以下代碼
vim /etc/nginx/conf.d/default.conf

 listen     80;
    server_name     www.accp.coom;   
    #charset koi8-r;
    access_log /var/log/nginx/www.accp.com-access.log main;
## 添加
    location ~* /upload/.*\.php$ {
    rewrite (.+) http://www.accp.com permanent;
    }

Nginx中Rewrite的使用

2、重啟服務
systemctl restart nginx
3、在瀏覽器上訪問 http://www.accp.com/upload/1.php ,就會幫我們自動跳轉到 www.accp.com網頁。

Nginx中Rewrite的使用

Nginx中Rewrite的使用

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

介休市| 福建省| 金堂县| 平阴县| 邓州市| 平舆县| 浮山县| 陆丰市| 探索| 德保县| 墨江| 应城市| 黔西| 鄂州市| 江北区| 保德县| 静乐县| 安徽省| 衡南县| 陆河县| 泰宁县| 社旗县| 巢湖市| 杭锦旗| 廊坊市| 安塞县| 巴南区| 天台县| 静宁县| 宁都县| 孟村| 桐柏县| 大兴区| 晴隆县| 通河县| 西盟| 望奎县| 长宁县| 丰原市| 河南省| 大埔区|