nginx判断ua实现移动端和电脑端自动双向跳转
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;
}
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。