美文网首页
Nginx多端适配

Nginx多端适配

作者: 墨线宝 | 来源:发表于2023-11-03 13:38 被阅读0次

Nginx多端适配

通过nginx获取用户设备的Agent来判断

# 多端适配
server {
    listen 7000;
    server_name zhhll.icu;
    location / {
        root /Users/zhanghe/Desktop/nginx;
        # 1.如果是静态页面判断agent如果是移动端则指向移动端
        # 2.pc和m端是两个服务,可以通过proxy_pass反向代理到对应的服务
        if ($http_user_agent ~* '(Android|webOS|iPhone|iPod|BlackBerry)') {
            root /Users/zhanghe/Desktop/nginx-demo/mob;
        }
        index index.html index.htm;
    }
}

https://zhhll.icu/2023/服务器/Nginx/17.Nginx多端适配/

本文由mdnice多平台发布

相关文章

网友评论

      本文标题:Nginx多端适配

      本文链接:https://www.haomeiwen.com/subject/tsjoidtx.html