#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;
}
跳转至不同的html文件
location / {
set $page 'index_en.html';
root E:/cmwork;
if ($http_accept_language ~* ^zh){
set $page 'index.html';
}
index $page;
}