nginx if 语句 return 403 ,没办法跳转自定义 403 页面
返回的 403 还是 nginx 自带的 403 页面
error_page 403 /403.html; location = /403.html { root D:/program/nginx/nginx-1.18.0/html; } if ($http_user_agent ~ "Baiduspider") { return 403; }