不要修改Content-Type
error_page 405 =200 @405;
location @405 {
root /usr/share/nginx/html;
proxy_method GET;
proxy_pass http://127.0.0.1/$request_uri;
}
location / {
rewrite ^(.*)$ /index.html break;
}
需要修改Content-Type
error_page 405 =200 @405;
location @405 {
root /usr/share/nginx/html;
proxy_method GET;
proxy_pass http://127.0.0.1/$request_uri;
}
location / {
default_type application/json;
return 200 '{"result": "","code": 302, "message": "Request failed. Please try again later (Error code:500).","msgDetails": "服务升级中,请稍后再试"}';
}