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

nginx 利用return实现301跳转

时间:2019-08-17 21:59:48      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:文件   rman   man   $1   ref   oca   server   efault   return   

第一种:

server
{
    location / {
        rewrite ^/(.*)$ http://www.baidu.com/$1 permanent;
    }
}

第二种:

server
{
    location / {
        return 301 http://www.baidu.com;
    }
}

第三种:

server
{
    location / {
        #default_type 指定显示格式,不可缺少,!-f /home/999 主要用于使条件为真,因为/home下并没有文件夹999
        default_type text/html;
        if (!-f /home/999) {
            return 200 "<html><script>window.location.href=http://www.baidu.com</script></html>";
        }
    }
}

 

nginx 利用return实现301跳转

标签:文件   rman   man   $1   ref   oca   server   efault   return   

原文地址:https://www.cnblogs.com/weilaibuxiangshuo/p/11370358.html

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