405 not allowed 问题排查

时间:2021-12-24 00:33:42


不只一种原因,可能是java代码返回405,也可能是nginx配置有问题。

nginx中的配置问题

去掉如下配置问题解决:

location /api/user/query {
root html;
index index.html index.htm;
try_files $uri $uri/ @userRoute;
}

nginx中已有的其他配置:

location /api {
root html;
index index.html index.htm;
try_files $uri $uri/ @apiRoute;
}
location @apiRoute {
rewrite ^/(.*) /api/index.html break;
}