405 not allowed
【原文:https://blog.csdn.net/a346673164/article/details/52932587】
1.首先看到的页面是nginx返回的页面,得知错误要从nginx上来解决
返回页面:
<html>
<head><title>405 not allowed</title></head>
<body bgcolor="white">
<center><h1>405 Not Allowed</h1></center>
<hr><center>nginx/1.0.11</center>
</body>
</html>
2.上网查资料,原来因为这里请求的静态文件采用的是post方法,nginx是不允许post访问静态资源。题话外,试着post访问了下www.baidu.com发现页面也是报错
3.现贴出三种解决方式
1.将405错误指向成功(我采用的这种方法解决的问题)
静态server下的location加入ERROR_page 405 =200 $uri;
location ~ ^/better/.*\.(htm|html|gif|jpg|jpeg|png|ico|rar|css|js|zip|txt|flv|swf|doc|ppt|xls|pdf|json|ico|htc)$ {
<span style="white-space:pre"> </span>root D:/code/BetterjrWeb;
<span style="white-space:pre"> </span>error_page 405 =200 $uri;
}
2.修改nginx下src/http/modules/ngx_http_static_module.c文件
if (r->method & NGX_HTTP_POST) {
return NGX_HTTP_NOT_ALLOWED;
}
这一段注释掉,重新编译,不要make install编译生成的nginx文件复制到sbin下 重启nginx
3.修改错误界面指向(网上多流传这种方式,但是没有改变请求方法,所以行不通,所以采用以下方法)
upstream static_backend {
server localhost:80;
}
server {
listen 80;
# ...
error_page 405 =200 @405;
location @405 {
root /srv/http;
proxy_method GET;
proxy_pass http://static_backend;
}
}
---------------------
作者:a346673164
来源:CSDN
原文:https://blog.csdn.net/a346673164/article/details/52932587
相关阅读
迅雷9绿色版下载:链接: https://pan.baidu.com/s/1i5ahBpj 密码: d4cr破解迅雷限制法将以下记录:127.0.0.1 hub5btmain.sandai.net1
解决allegro16.6中place manually 不显示放置器件框问
最小化“Placement”对话框后不能再显示 执行Place->Manualy…后没有显示"Placement"对话框,主窗口状态如下,注意红圈区域这时关闭A
下面我们学习使用docker来部署目前非常流行的博客系统wordpress的运行环境nginxphpmysql(作者wordpress博客www.centos.bz正是运
在一台装了Windows Server 2003的操作系统上运行一个视频软件,提示“应用程序正常初始化(0x00000005)失败”。但是在某些Window
我们可以在ipad设置里面更换墙纸,可找不到更换主题的地方;没错,ipad本身是没有更换主题的功能的,不过我们可以通过第三方软件来解决这