lumen+nginx+405 not allow +跨域

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lumen+nginx+405 not allow +跨域相关的知识,希望对你有一定的参考价值。

使用lumen做的后台API,和前端调试时前端在调用需要jwt认证的接口时出现405not allow 错误。

找了一堆发现可能是跨域问题。
http://to-u.xyz/2016/06/30/nginx-cors/ 讲的不错。主要就是复杂请求时会先发送一次OPTIONS预请求然后再正式请求。。。。。
当时找了一天没找明白是为什么。最后才定位到nginx服务器上。
特此记录!

在nginx.conf server块加上这段过滤就行。

if ($request_method = ‘OPTIONS‘) { 
    add_header Access-Control-Allow-Origin *; 
    add_header Access-Control-Allow-Methods GET,POST,PUT,DELETE,OPTIONS;
    #其他头部信息配置,省略...
    return 204; 
}

参考:

http://www.ruanyifeng.com/blog/2016/04/cors.html

http://to-u.xyz/2016/06/30/nginx-cors/

Nginx如何进行跨域配置,才能使用DELETE,PUT请求方法
请添加链接描述

Cross-Origin Resource Sharing (CORS)

以上是关于lumen+nginx+405 not allow +跨域的主要内容,如果未能解决你的问题,请参考以下文章

Nginx的405 not allowed错误解决

nginx 解决 405 not allowed错误

Nginx 405 not allowed最简单快速解决办法

nginx静态html页面接收post请求,报405 not allowed错误

405 not allowed是啥意思?要怎么解决?

关于HTTP请求出现 405状态码 not allowed的解决办法