项目中的需求是用ajax去响应了静态资源,导致报状态码405 ,进行了问题排查。
原因为 Apache、IIS、Nginx等绝大多数web服务器,都不允许静态文件响应POST请求
解决办法:
1、将post请求改为get请求即可
2、静态server下的location加入 error_page 405 =200 $request_uri;
location / {
root /usr/share/nginx/html/cashier;
try_files $uri $uri/ /index.html;
index index.html index.htm;
error_page 405 =200 $request_uri;
}
本文转载自: https://blog.csdn.net/Y2000104/article/details/135772718
版权归原作者 Y2000104 所有, 如有侵权,请联系我们删除。
版权归原作者 Y2000104 所有, 如有侵权,请联系我们删除。