nginx不接受POST表单数据

时间:2015-01-20 08:20:45

标签: post nginx

当我使用此

发布到服务器时
POST /api/user/login HTTP/1.1
Host: xxxx.com
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded

它有效,但不是这个

POST /api/user/login HTTP/1.1
Host: xxxx.com
Cache-Control: no-cache

是否可以让第一个工作?

1 个答案:

答案 0 :(得分:0)

他们两个都在工作,阻止我的是

error_page 500 502 503 504 /50x.html;
location = /50x.html {
   root /usr/share/nginx/html;
}

我更改了这些行,以便我的应用程序可以处理500 502 503 504错误。

现在删除了这些行并按预期工作。可以帮助某人