美文网首页
linux+nginx配置跨域,nginx跨域问题

linux+nginx配置跨域,nginx跨域问题

作者: 可乐_加冰_ | 来源:发表于2022-09-04 03:08 被阅读0次
    add_header Access-Control-Allow-Origin *;
    add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
    add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';

宝塔面版举例:

第一种,直接写在外层(全部资源)。如果这样写无效,请尝试第二种。


image.png

第二种,写在对应访问资源规则内。

  add_header Access-Control-Allow-Origin *;
  add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
image.png

相关文章

网友评论

      本文标题:linux+nginx配置跨域,nginx跨域问题

      本文链接:https://www.haomeiwen.com/subject/wgbkrrtx.html