美文网首页
跨域访问

跨域访问

作者: 中年大叔的日常 | 来源:发表于2017-07-05 22:11 被阅读8次

    在nginx.conf中配置

    http {
      ......
      add_header Access-Control-Allow-Origin *;
      add_header Access-Control-Allow-Headers X-Requested-With;
      add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
      ......
    }
    

    这样就可以实现GET,POST,OPTIONS的跨域请求的支持
    也可以

    add_header Access-Control-Allow-Origin http://test.51testing.com; 
    

    --指定允许的url;

    相关文章

      网友评论

          本文标题:跨域访问

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