chaihongjun.me

nginx配置跳转移动端

网上有很多的关于PC跳转到移动端页面的写法了,这里有一个在nginx上配置的方法,对于提升页面效率非常有用:

#----- redirect to mobile check (starts) -----#
    set $mobile_rewrite do_not_perform;

    # this regex string is actually much longer to match more mobile devices
    if ($http_user_agent ~* "|android|ip(ad|hone|od)|UCBrowser") {
        set $mobile_rewrite perform;
    }

    if ($mobile_rewrite = perform) {
        rewrite ^ https://移动端域名$request_uri? redirect; #注意协议
        break;
    }
  #----- redirect to mobile check (ends) -----#


知识共享许可协议本作品采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议进行许可。作者:柴宏俊»