Apache、IIS、Nginx等绝大大都web处事器,都不答允静态文件响应POST请求,香港服务器香港服务器租用,不然会返回“HTTP/1.1 405Method not allowed”错误。
例1:用Linux下的curl呼吁发送POST请求给Apache处事器上的HTML静态页
序列号 | CPU | RAM | HDD | 带宽 | 售价(美元) | 免费试用 |
---|---|---|---|---|---|---|
香港服务器1 | E5-2620 | 32G | 1T HDD | 50M/无限流量 | $196.00 | 立即申请 |
香港服务器2 | E5-2650 | 32G | 1T HDD | 50M/无限流量 | $256.00 | 立即申请 |
香港服务器3 | E5-2680 | 32G | 1T HDD | 50M/无限流量 | $316.00 | 立即申请 |
香港服务器4 | E5-2690 | 32G | 1T HDD | 50M/无限流量 | $336.00 | 立即申请 |
香港服务器5 | E5-2697 | 32G | 1T HDD | 50M/无限流量 | $376.00 | 立即申请 |
香港服务器6 | E5-2620*2 | 32G | 1T HDD | 50M/无限流量 | $376.00 | 立即申请 |
香港服务器7 | E5-2650*2 | 32G | 1T HDD | 50M/无限流量 | $436.00 | 立即申请 |
香港服务器8 | E5-2680*2 | 32G | 1T HDD | 50M/无限流量 | $476.00 | 立即申请 |
香港服务器9 | E5-2690*2 | 32G | 1T HDD | 50M/无限流量 | $556.00 | 立即申请 |
香港服务器10 | E5-2697*2 | 32G | 1T HDD | 50M/无限流量 | $596.00 | 立即申请 |
香港服务器11 | E5-2680v4*2 | 32G | 1T HDD | 50M/无限流量 | $696.00 | 立即申请 |
香港服务器12 | E5-2698v4*2 | 32G | 1T HDD | 50M/无限流量 | $796.00 | 立即申请 |
[[email protected] ~]# curl -d1=1http://www.server110.com/
Method Not Allowed
The requested method POST is not allowed for the URL/index.html.
Apache/1.3.37 Serveratwww.server110.comPort 80
例2:用Linux下的curl呼吁发送POST请求给Nginx处事器上的HTML静态页
[[email protected] ~]# curl -d1=1http://www.server110.com/
405 NotAllowed
但在有些应用中,需要使静态文件可以或许响应POST请求。
对付Nginx,可以修改nginc.conf设置文件,改变“405错误”为“200ok”,并设置location来办理,要领如下:
server
{
listen 80;
server_name www.server110.com;
index index.html index.htm index.php;
root /opt/htdocs;
if (-d $request_filename)
{
rewrite^/(.*)([^/])$http://$host/$1$2/permanent;
}
error_page 405 =200 @405;
location @405
{
root /opt/htdocs;
}
location ~ .*.php?$
{
include conf/fcgi.conf;
fastcgi_pass127.0.0.1:10080;
fastcgi_index index.php;
}
}
####################################### 修改源代码,从头编译安装nginx
编辑nginx源代码
[[email protected] ~]# vimsrc/http/modules/ngx_http_static_module.c
修改: 找到下面一段注释掉
/*if (r->method & NGX_HTTP_POST) { returnNGX_HTTP_NOT_ALLOWED; }*/
然后凭据本来的编译参数,从头编译安装nginx,即可