nginx依据http请求头中的accept-language转发到不同的页面

时间:2022-12-29 13:36:23

http://www.55118885.com/w/951529254.html

nginx根据http请求头中的accept-language转发到不同的页面

直接上代码

if ($http_accept_language ~* ^zh){

set $lang "/index_cn.jsp";
}
if ($http_accept_language !~* ^zh){
set $lang "/index_en.jsp";

}

location =/ {

proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://localhost:8080$lang;
}

http://www.findmaven.net是一个findjar和findmaven的搜索引擎

浏览器设置(英文)