nginx配置301重定向 nginx子目录301重定向

发布时间:2020-09-08编辑:脚本学堂
本文介绍了nginx配置301重定向的设置方法,以及nginx子目录301重定向的设置方法,有需要的朋友参考学习下。

本节内容:
nginx 301重定向设置

一,nginx配置301重定向
nginx版本为1.1.19。
域名由a.com转移到了b.com,并对两个域名有所有权,可以:
 

复制代码 代码示例:
server{
    server_name a.com;
    return 301 $scheme://b.com$request_uri;
}
 

重启服务器,查看成功与否:
 

复制代码 代码示例:
curl -I a.com

二,nginx子目录301重定向(301跳转)设置方法
把www.b.com/bfiles/download/转向到dx1.b.com:81/bfiles/download/下,nginx下网站的conf文件中这些写:
 

复制代码 代码示例:
location ~* ^/bfiles/download/ { 
rewrite ^/bfiles/download/(.*)$ http://dx1.b.com:81/bfiles/download/$1 permanent; 
}

即实现了nginx中子目录的重定向。