判断移动端
#判断移动端,跳转转到m.aaa.com
if ($http_user_agent ~* (mobile|nokia|iphone|ipad|android|samsung|htc|blackberry)) {
rewrite ^/(.*)$ http://m.aaa.com redirect;#这里随意使用,这一行代表域名栏会跳转到m.aaa.com
#proxy_pass http://101.200.141.xx:8909;#这一行代表域名不会改变,继续使用aaa.com,但是真正使用的是m.aaa.com
}
判断语言
#nginx判断客户端浏览器语言
#中文
if ($http_accept_language ~* ^zh){
rewrite ^/$ http://zh.aa.com/index.html?la=zh redirect;
}
#英文
if ($http_accept_language ~* ^en){
rewrite ^/$ http://us.aa.com/index.html?la=us redirect;
}