当前位置: > Linux服务器 > nginx >

Nginx静态文件响应POST请求,提示405错误问题

时间:2014-05-14 17:35来源:linux.it.net.cn 作者:IT网

Apache、IIS、nginx等绝大多数web服务器,都不允许静态文件响应POST请求,否则会返回“HTTP/1.1 405 Method not allowed”错误。
例1:用linux下的curl命令发送POST请求给Apache服务器上的HTML静态页

 
  1. [root@localhost ~]# curl -d 11=1 http://www.92csz.com/index.html   
  2. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">  
  3. <HTML>  
  4.     <HEAD>  
  5.         <TITLE>405 Method Not Allowed</TITLE>  
  6.     </HEAD>  
  7.     <BODY>  
  8.         <H1>Method Not Allowed</H1>  
  9.         The requested method POST is not allowed for the URL /index.html.<P>  
  10.         <HR>  
  11.         <ADDRESS>Apache/1.3.37 Server at www.92csz.com Port 80</ADDRESS>  
  12.     </BODY>  
  13. </HTML>  

例2:用linux下的curl命令发送POST请求给nginx服务器上的HTML静态页

 
  1. [root@localhost ~]# curl -d 11=1 http://www.92csz.com/index.htm   
  2. <html>  
  3.     <head><title>405 Not Allowed</title></head>  
  4.     <body bgcolor="white">  
  5.         <center><h1>405 Not Allowed</h1></center>  
  6.         <hr><center>nginx/1.2.0</center>  
  7.     </body>  
  8. </html>  

但在有些应用中,需要使静态文件能够响应POST请求。
对于Nginx,可以修改nginc.conf配置文件,改变“405错误”为“200 ok”,并配置location来解决,方法如下:

 
  1. server   
  2. {   
  3.     listen  80;   
  4.     server_name www.92csz.com;   
  5.     index index.html index.htm index.php;   
  6.     root  /opt/htdocs;   
  7.     if (-d $request_filename)   
  8.     {   
  9.         rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;   
  10.     }   
  11.     error_page  405 =200 @405;   
  12.     location @405   
  13.     {   
  14.         root  /opt/htdocs;   
  15.     }   
  16.     location ~ .*\.php?$   
  17.     {   
  18.         include conf/fcgi.conf;        
  19.         fastcgi_pass  127.0.0.1:10080;   
  20.         fastcgi_index index.php;   
  21.     }   
  22. }  

当然也可以修改nginx源代码来解决
修改源代码,重新编译安装nginx
编辑nginx源代码

  1. [root@localhost ~]# vim src/http/modules/ngx_http_static_module.c  

修改: 找到下面一段注释掉

 
  1. /*  
  2. if (r->method & NGX_HTTP_POST)  
  3. {  
  4.     return NGX_HTTP_NOT_ALLOWED;  
  5. }  
  6. */  

然后按照原来的编译参数,重新编译安装nginx,即可

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容