【发布时间】:2022-01-21 22:32:15
【问题描述】:
示例 nginx.conf,我想从位置指令中移动条件重写,但不知道如何:
# https://user-agents.net/browsers
map $http_user_agent $outdated {
default 0;
...
}
server {
...
location ~ (not-supported) {
# empty
}
location / {
if ($outdated = 1) {
rewrite ^ /not-supported/index.html break;
}
try_files $uri $uri/ /index.html =404;
}
...
}
【问题讨论】:
标签: nginx nginx-config