Nginx怎么根据不同浏览器语言配置页面跳转
时间:2023-05-13 20:02
简体和繁体判断 我想根据http首部的 accept-language 决定提供简体或繁体的文件。在chrome中, chrome://settings/languages 可以设定偏好语言,浏览器会据此设置 accept-language 首部。较好的处理方式是解析该字段,获取qvalue,根据优先级选取最恰当的语言。但仅用于支持简繁体,我想用取巧的办法:忽略优先级,只要 accept-language 里出现了 zh-hant 、 zh-tw 、 zh-hk 等字样,就返回繁体,否则返回简体。 我用hexo生成网站,源文件用繁体写成。对于 hexo generate 生成得到的 2015-10-06-nginx-accept-language-zhs-zht.html ,用 opencc 转换得到简体版本: 2015-10-06-nginx-accept-language-zhs-zht.html.zhs.html 。视情况还需要转换其他一些文件,比如 atom.xml 、 提供“阅读最多文章”功能 的 popular.json 。 在nginx配置文件中指定需要简繁体支持的路由: 测试: 返回 浏览器设置(中文) 返回 以上就是Nginx怎么根据不同浏览器语言配置页面跳转的详细内容,更多请关注Gxl网其它相关文章!map $http_accept_language $lang { default zhs; ~zh-hant zht; ~zh-tw zht; ~zh-hk zht;}
# zshcd ~/maskray.me/publicopencc -c t2s.json -i atom.xml -o atom.xml.zhs.xmlfor i in **/*.html 20*; do # 选择需要简繁体支持的文件 c=${#${(s/.html/%)i}//[^%]/} # 计算子串`.html`出现次数 if (( $c <= 1 )); then # 出现一次的为原始文件,需要转换成简体 opencc -c t2s.json -i $i -o $i.zhs.html fidone
location ~ ^/blog/20?? { try_files $uri.$lang.html $uri =404; add_header vary accept-language;}location ~ /atom.xml { try_files $uri.$lang.xml $uri =404; add_header vary accept-language;}location ~ .json$ { try_files $uri.$lang.json $uri =404; add_header vary accept-language;}# 其他需要简繁体支持的路由
根据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的搜索引擎
浏览器设置(英文)