背景:
有
/www/wwwroot/example-h5
/www/wwwroot/example-pc
两个目录, 需要根据用户端, 响应不同的页面
解决方案
根据用户UA不同, 响应正确的页面给用户
# 默认响应移动端静态资源
set $root_dir /www/wwwroot/example-h5;
# !~* 是一条正则表达式,!表示取反, ~*表示不区分大小写
if ($http_user_agent !~* "(mobile|nokia|iphone|ipad|android|samsung|htc|blackberry)") {
# 非移动端UA, 响应PC静态资源
set $root_dir /www/wwwroot/example-pc;
}
location / {
# root 使用上面定义的变量
root $root_dir;
try_files $uri $uri/ /index.html =404;
#index index.html;
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。