标签:nginx 静态页面post请求
默认情况下,nginx、apache、IIs等web服务无法响应静态页面的post请求,后端用来处理post请求,生产环境中不会有此问题(一般都不允许配置静态页面的post请求) upstream static_backend {
server localhost:80;
}
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 405 =200 @405;
location @405 {
root /html;
proxy_method GET;
proxy_pass http://static_backend;
}
标签:nginx 静态页面post请求
原文地址:http://blog.51cto.com/laodou/2121553