溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

發(fā)布時(shí)間:2022-06-02 14:22:02 來(lái)源:億速云 閱讀:121 作者:iii 欄目:大數(shù)據(jù)

本篇內(nèi)容主要講解“Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些”吧!

應(yīng)用場(chǎng)景1——基于域名的跳轉(zhuǎn)

公司舊域名 ,因業(yè)務(wù)需求有變更,需要使用新域名www.kgc.com 代替

1.不能廢除舊域名
2.從舊域名跳轉(zhuǎn)到新域名,且保持其參數(shù)不變

部署環(huán)境

一臺(tái)linux服務(wù)器(192.168.142.130)
一臺(tái)測(cè)試主機(jī)windows 7

1,安裝nginx服務(wù)

[root@localhost ~]# rpm -uvh http://nginx.org/packages/centos/7/noarch/rpms/nginx-release-centos-7-0.el7.ngx.noarch.rpm
#安裝nginx官方源

[root@localhost ~]# yum install nginx -y  
#yum安裝nginx

2,修改nginx默認(rèn)配置文件

[root@localhost ~]# vim /etc/nginx/conf.d/default.conf ##修改默認(rèn)配置文件
server {
    listen    80;
    server_name www.accp.com;  ##修改主機(jī)名

    #charset koi8-r;
    access_log /var/log/nginx/www.accp.com-access.log main;  ##開啟日志服務(wù)

3,安裝bind解析服務(wù)

[root@localhost ~]# yum install bind -y

4,修改主配置文件(named.conf)

[root@localhost ~]# vim /etc/named.conf 
options {
                listen-on port 53 { any; };     ##監(jiān)聽(tīng)所有
                ...
                allow-query   { any; };      ##允許所有

5,修改區(qū)域配置文件(named.rfc1912.zones)

[root@localhost ~]# vim /etc/named.rfc1912.zones  ##配置區(qū)域配置文件

zone "accp.com" in {
                type master;
                file "accp.com.zone";       ##accp區(qū)域數(shù)據(jù)配置文件
                allow-update { none; };
};

6,修改區(qū)域數(shù)據(jù)配置文件(accp.com.zone)

[root@localhost ~]# cd /var/named/ 
[root@localhost named]# cp -p named.localhost accp.com.zone  ##復(fù)制模板
[root@localhost named]# vim accp.com.zone  ##修改區(qū)域配置文件

$ttl 1d
@    in soa @ rname.invalid. (
                                    1d   ; refresh
                                    1h   ; retry
                                    1w   ; expire
                                    3h )  ; minimum
                ns   @
                a    127.0.0.1
www in a    192.168.142.130         ##本機(jī)地址
[root@localhost named]# systemctl start named   ##開啟dns服務(wù)
[root@localhost named]# systemctl stop firewalld.service  ##關(guān)閉防火墻
[root@localhost named]# setenforce 0
[root@localhost named]# systemctl start nginx  ##開啟nginx服務(wù)

7,用測(cè)試機(jī)測(cè)試網(wǎng)頁(yè)

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

8,修改配置文件,設(shè)置域名跳轉(zhuǎn)

[root@localhost named]# vim /etc/nginx/conf.d/default.conf ##修改配置文件
  server {
      listen    80;
      server_name www.accp.com;

      #charset koi8-r;
      access_log /var/log/nginx/www.accp.com-access.log main;

      location / {
          if ($host = "www.accp.com"){    ##匹配如果域名是老域名
                  rewrite ^/(.*)$ http://www.kgc.com/$1 permanent;  ##則永久設(shè)置跳轉(zhuǎn)新域名
          }
          root  /usr/share/nginx/html;
          index index.html index.htm;
      }

9,添加新域名解析

[root@localhost named]# vim /etc/named.rfc1912.zones 

zone "kgc.com" in {
                type master;
                file "kgc.com.zone";       ##accp區(qū)域數(shù)據(jù)配置文件
                allow-update { none; };
};

[root@localhost named]# cp -p /var/named/accp.com.zone /var/named/kgc.com.zone
##復(fù)制區(qū)域數(shù)據(jù)配置文件為kgc的數(shù)據(jù)配置文件
[root@localhost named]# systemctl restart named  ##重啟解析服務(wù)
[root@localhost named]# systemctl restart nginx   ##重啟nginx服務(wù)

10,用舊域名訪問(wèn),查看網(wǎng)頁(yè)跳轉(zhuǎn)

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

11,舊域名后加上參數(shù),查看跳轉(zhuǎn)新域名時(shí)是否有參數(shù)

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

應(yīng)用場(chǎng)景2——基于客戶端ip訪問(wèn)跳轉(zhuǎn)

公司業(yè)務(wù)版本上線,所有ip訪問(wèn)任何內(nèi)容都顯示一個(gè)固定維護(hù)頁(yè)面,只有公司ip訪問(wèn)正常

1,修改nginx默認(rèn)配置文件

[root@localhost ~]# cd /etc/nginx/conf.d/
[root@localhost conf.d]# vim default.conf 

server {
    listen    80;
    server_name www.accp.com;
    #charset koi8-r;
    access_log /var/log/nginx/www.accp.com-access.log main;
    #設(shè)置是否合法的ip標(biāo)志
    set $rewrite true;     ##設(shè)置變量為真
    #判斷是否為合法的ip
    if ($remote_addr = "192.168.142.120"){
        set $rewrite false;  ##匹配合法ip,將變量設(shè)置為假,正常跳轉(zhuǎn)頁(yè)面
    }
    #非法ip進(jìn)行判斷打上標(biāo)記
    if ($rewrite = true){        ##匹配非法ip,跳轉(zhuǎn)到main的網(wǎng)頁(yè)
        rewrite (.+) /main.html;
    }
    #匹配標(biāo)記進(jìn)行跳轉(zhuǎn)站點(diǎn)
    location = /main.html {       ##精確匹配
        root /usr/share/nginx/html;  ##站點(diǎn)路徑
    }

    location / {
        root  /usr/share/nginx/html;
        index index.html index.htm;
    }

2,創(chuàng)建非法ip站點(diǎn)及main的網(wǎng)頁(yè)頁(yè)面

[root@localhost conf.d]# cd /usr/share/nginx/html/ ##切換到站點(diǎn)中
[root@localhost html]# vim main.html  ##編輯非法ip訪問(wèn)網(wǎng)頁(yè)內(nèi)容
<h1>this is test web</h1>
[root@localhost html]# systemctl restart nginx  ##重啟nginx服務(wù)

3,訪問(wèn)測(cè)試網(wǎng)頁(yè)

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

應(yīng)用場(chǎng)景3——基于舊,新域名跳轉(zhuǎn)并加目錄

將域名http://bbs.accp.com 下面的發(fā)帖都跳轉(zhuǎn)到http://www.accp.com/bbs 且域名跳轉(zhuǎn)后保持參數(shù)不變

1,修改nginx默認(rèn)配置文件

[root@localhost ~]# cd /etc/nginx/conf.d/
[root@localhost conf.d]# vim default.conf  ##修改默認(rèn)配置文件
server {
    listen    80;
    server_name bbs.accp.com;  ##修改服務(wù)名稱

    #charset koi8-r;
    access_log /var/log/nginx/www.accp.com-access.log main;
    location /post {     ##用location匹配post目錄
        rewrite (.+) http://www.accp.com/bbs$1 permanent;  ##永久重定向跳轉(zhuǎn)
    }

2,修改dns的區(qū)域數(shù)據(jù)配置文件(accp.com.zone)

[root@localhost conf.d]# cd /var/named/
[root@localhost named]# vim accp.com.zone  ##修改區(qū)域數(shù)據(jù)配置文件
$ttl 1d
@    in soa @ rname.invalid. (
                          0    ; serial
                          1d   ; refresh
                          1h   ; retry
                          1w   ; expire
                          3h )  ; minimum
        ns   @
        a    127.0.0.1
bbs in a    192.168.142.130
[root@localhost named]# systemctl restart named  ##重啟解析服務(wù)
[root@localhost named]# systemctl restart nginx   ##重啟nginx服務(wù)
[root@localhost named]# echo "nameserver 192.168.142.130" > /etc/resolv.conf 
##將解析服務(wù)器地址放到本地解析配置文件中

3,測(cè)試網(wǎng)頁(yè)

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

應(yīng)用場(chǎng)景4——基于參數(shù)匹配的跳轉(zhuǎn)

瀏覽器訪問(wèn):http://www.accp.com/100-(100|200)-100.html 跳轉(zhuǎn)到http://www.accp.com 頁(yè)面

1,修改nginx默認(rèn)配置文件

[root@localhost ~]# cd /etc/nginx/conf.d/
[root@localhost conf.d]# vim default.conf 

server {
    listen    80;
    server_name www.accp.com;
    #charset koi8-r;
    access_log /var/log/nginx/www.accp.com-access.log main;
    if ($request_uri ~ ^/100-(100|200)-(\d+).html$){    
    ##匹配正則開頭為100-(100|200)-一次多次的整數(shù)html為結(jié)尾的
        rewrite (.*) http://www.accp.com permanent;    ##永久重定向跳轉(zhuǎn)到主頁(yè)
    }

2,修改dns區(qū)域數(shù)據(jù)配置文件

  [root@localhost conf.d]# vim /var/named/accp.com.zone ##修改區(qū)域數(shù)據(jù)配置文件
  www in a    192.168.142.130  
  [root@localhost conf.d]# systemctl restart named ##重啟解析服務(wù) 
  [root@localhost conf.d]# systemctl restart nginx   ##重啟nginx服務(wù)

3,測(cè)試網(wǎng)頁(yè)

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

應(yīng)用場(chǎng)景5——基于目錄下所有php文件跳轉(zhuǎn)

訪問(wèn)http://www.accp.com/upload/1.php 跳轉(zhuǎn)到首頁(yè)

1,修改nginx默認(rèn)配置文件

[root@localhost ~]# cd /etc/nginx/conf.d/
  [root@localhost conf.d]# vim default.conf  ##修改默認(rèn)配置文件
  server {
      listen    80;
      server_name www.accp.com;
      #charset koi8-r;
      access_log /var/log/nginx/www.accp.com-access.log main;
      location ~* /upload/.*\.php$ {     ##匹配不分大小寫,匹配upload后零次或多次以.php為結(jié)尾的
          rewrite (.+) http://www.accp.com permanent;  ##跳轉(zhuǎn)到首頁(yè)
      }
  [root@localhost conf.d]# systemctl restart nginx  ##重啟nginx服務(wù)

2,測(cè)試網(wǎng)頁(yè)

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

應(yīng)用場(chǎng)景6——基于最普通url請(qǐng)求的跳轉(zhuǎn),訪問(wèn)一個(gè)具體的頁(yè)面跳轉(zhuǎn)到首頁(yè)

1,修改nginx默認(rèn)配置文件

[root@localhost ~]# cd /etc/nginx/conf.d/
  [root@localhost conf.d]# vim default.conf  ##修改nginx默認(rèn)配置文件
  server {
      listen    80;
      server_name www.accp.com;
      #charset koi8-r;
      access_log /var/log/nginx/www.accp.com-access.log main;
      location ~* ^/abc/123.html {    ##匹配某一個(gè)特定的網(wǎng)頁(yè)
          rewrite (.+) http://www.accp.com permanent; ##跳轉(zhuǎn)到首頁(yè)
      }
  [root@localhost conf.d]# systemctl restart nginx  ##重啟nginx服務(wù)

2,測(cè)試網(wǎng)頁(yè)

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些

到此,相信大家對(duì)“Nginx Rewrite模塊應(yīng)用的場(chǎng)景有哪些”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI