Nginx配置rewrite过程介绍

Posted CFFIRM

tags:

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

创建rewrite语句

 

vi conf/vhost/www.abc.com.conf

#vi编辑虚拟主机配置文件

 

文件内容

server {

        listen 80;

        server_name abc.com;

        rewrite ^/(.*) http://www.abc.com/$1 permanent;

}

 

 

server {

        listen 80;

        server_name www.abc.com;

        location / {

                root /data/www/www;

                index index.html index.htm;

        }

        error_log    logs/error_www.abc.com.log error;

        access_log    logs/access_www.abc.com.log    main;

}

或者

server {

        listen 80;

        server_name abc.com www.abc.com;

        if ( $host != ‘www.abc.com‘  ) {

                rewrite ^/(.*) http://www.abc.com/$1 permanent;

        }

        location / {

                root /data/www/www;

                index index.html index.htm;

        }

        error_log    logs/error_www.abc.com.log error;

        access_log    logs/access_www.abc.com.log    main;

}

(2)重启服务

确认无误便可重启nginx,操作如下:

 

nginx -t

#结果显示ok和success没问题便可重启

service nginx restart

 

(3)查看跳转效果

打开浏览器访问abc.com

页面打开后,URL地址栏的abc.com变成了www.bawei.com说明URL重写成功。

以上是关于Nginx配置rewrite过程介绍的主要内容,如果未能解决你的问题,请参考以下文章

Nginx核心模块——HTTP中的配置指令location和rewrite介绍

Nginx伪静态配置和常用Rewrite伪静态规则

Nginx核心模块——HTTP中的配置指令location和rewrite介绍

Nginx核心模块——HTTP中的配置指令location和rewrite介绍

Nginx URL重写(rewrite)配置及信息详解

Nginx URL重写(rewrite)配置及信息详解