Nginx解决跨域请求 发表于 2017-07-05 分类于 Backend 阅读次数: 在服务器端的nginx.conf中配置增加配置 在服务器端的nginx.conf中配置增加配置1234567http { ...... add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-Control-Allow-Methods GET,POST,OPTIONS; ......}