PC端域名:http://www.pangwx.com/
移动端域名:http://m.pangwx.com/

PC访问移动端网址302临时重定向到PC端网址

    if ($http_user_agent ~* (mobile|nokia|iphone|ipad|android|samsung|htc|blackberry)) {
        return 302 http://m.pangwx.com$request_uri;
    }

移动端访问PC网址302临时重定向到移动端端网址

    if ($http_user_agent !~* (mobile|nokia|iphone|ipad|android|samsung|htc|blackberry)) {
        return 302 http://www.pangwx.com$request_uri;
    }
文章目录