码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 301重定向几种写法

时间:2018-05-24 19:33:55      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:nginx 301重定向   nginx强制跳转   nginx   

nginx 301重定向写法
域名设置从http强制跳转到https

server {
listen 80;
server_name 100tt.com www.100tt.com 100tt.me 100tt.vip 100tt.org;
rewrite ^(.*)$ https://$host$1 permanent;
}

或者以下写法,从一个域名跳到另一个域名,但是这些域名都是nginx配置上有的域名

server {
server_name 666.com www.666.com;
if ($host ~ ‘666.com | www.666.com‘ ) {
rewrite ^/(.
)$ http://888.com/$1 permanent;
}

}

nginx 301重定向几种写法

标签:nginx 301重定向   nginx强制跳转   nginx   

原文地址:http://blog.51cto.com/8999a/2119998

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!