nginx发送post请求报405的问题

Posted 崔某人的架构师之路~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx发送post请求报405的问题相关的知识,希望对你有一定的参考价值。

[[email protected] meeting-order]# curl -X POST https://test.abc.com/
<html>
<head><title>405 Not Allowed</title></head>
<body bgcolor="white">
<center><h1>405 Not Allowed</h1></center>
<hr><center>nginx</center>
</body>
</html>
[[email protected]-server meeting-order]#

nginx配置加上如下代码

location / {
            error_page 405 =200 /index.html;
            try_files $uri $uri/ /index.html;
        }

再次发送POST请求,返回的和GET请求一样了

 

以上是关于nginx发送post请求报405的问题的主要内容,如果未能解决你的问题,请参考以下文章

postman发送post请求,报405 Method Not Allowed

把post请求的地址粘贴到浏览器地址栏敲回车报错405[Method Not Allowed]

不允许 POST 请求 - 不允许 405 - nginx,即使包含标头

nginx错误码405是啥状态

Nginx下HTML页面POST请求静态JSON数据返回405状态

向 Cassini Web 服务器发送请求 URI 为“/”的 POST 请求,导致 405 错误。为啥?