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

  • 摘自 https://blog.csdn.net/qwe885167759/article/details/121030133
注意在 add_header Access-Control-Allow-Headers  里面追加自定义参数即可
    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,自定义1,自定义2';

宝塔面版举例:

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


image.png

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

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

你可能感兴趣的:(linux+nginx配置跨域,nginx跨域问题)