nginx地址重写

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx地址重写相关的知识,希望对你有一定的参考价值。

1 问题


通过调整nginx服务端配置,实现以下目标:

所有访问a.html的请求,重定向到b.html;

所有访问192.168.4.5的请求重定向至www.baidu.com;

所有访问192.168.4.5/下面子页面,重定向至www.baidu.com/下相同的页面;

实现curl访问不同的页面。

2 方案


关于Nginx服务器的地址重写,主要用到的配置参数是rewrite:

rewrite regex replacement flag

3 步骤


实现此案例需要按照如下步骤进行。

步骤一:修改配置文件(访问a.html重定向到b.html)


1)修改Nginx服务配置:

[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf

.. ..

server {

        listen       80;

        server_name  localhost;

location / {

    root   html;

index  index.html index.htm;

rewrite /a.html  /b.html;            //注意看这里

}

}

2)重新加载配置文件

[[email protected] ~]# /usr/local/nginx/sbin/nginx  -s  reload

3)客户端测试

[[email protected] ~]# firefox  http://192.168.4.5/a.html

步骤二:修改配置文件(访问192.168.4.5的请求重定向至www.baidu.con)


1) 修改Nginx服务配置

[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf

.. ..

server {

        listen       80;

        server_name  localhost;

rewrite ^/ http://www.baidu.com/;                              //注意看这里

location / {

    root   html;

index  index.html index.htm;

}

}

2)重新加载配置文件

[[email protected] ~]# /usr/local/nginx/sbin/nginx  -s  reload

3)客户端测试

[[email protected] ~]# firefox  http://192.168.4.5

步骤三:修改配置文件(访问192.168.4.5/下面子页面,重定向至www.baidu.com/下相同的页面)


1) 修改Nginx服务配置

[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf

.. ..

server {

        listen       80;

        server_name  localhost;

rewrite ^/(.*) http://www.baidu.com/$1;                     //注意看这里

location / {

    root   html;

index  index.html index.htm;

}

}

2)重新加载配置文件

[[email protected] ~]# /usr/local/nginx/sbin/nginx  -s  reload

3)客户端测试

[[email protected]ent ~]# firefox  http://192.168.4.5

步骤三:修改配置文件(实现curl和火狐访问相同连接返回的页面不同)

1) 修改Nginx服务配置

.. ..

server {

        listen       80;

        server_name  localhost;

location / {

    root   html;

index  index.html index.htm;

}

if ($http_user_agent ~* url) {                    //识别客户端curl浏览器

rewrite ^(.*)$ /curl/$1 break;                          //注意看这里

}

}

2)创建网页目录以及对应的页面文件:

[[email protected] ~]# echo "I am Normal page" > /usr/local/nginx/html/test.html

[[email protected] ~]# mkdir  -p  /usr/local/nginx/html/curl/

[[email protected] ~]# echo "I am is curl page" > /usr/local/nginx/html/curl/test.html

[[email protected] ~]# cp /usr/share/backgrounds/gnome/Road.jpg \

> /usr/local/nginx/curl/test.jpg

2)重新加载配置文件

[[email protected] ~]# /usr/local/nginx/sbin/nginx  -s  reload

4)客户端测试

[[email protected] ~]# firefox  http://192.168.4.5/test.html

[[email protected] ~]# curl     http://192.168.4.5/test.html

[[email protected] ~]# curl     http://192.168.4.5/test.jsp


以上是关于nginx地址重写的主要内容,如果未能解决你的问题,请参考以下文章

nginx篇最初级用法之地址重写

nginx地址重写

Nginx地址重写功能

nginx url地址重写功能

关于nginx你可能不知道的秘密----nginx地址重写以及错误页面配置

nginx rewrite uri地址重写