Nginx设置支持跨域访问
vi /etc/nginx/nginx.conf
加入如下代码
- http {
- ###start####
- add_header Access-Control-Allow-Origin *;
- add_header Access-Control-Allow-Headers X-Requested-With;
- add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
- ###end ###
- }
Nginx设置支持跨域访问
vi /etc/nginx/nginx.conf
加入如下代码
- http {
- ###start####
- add_header Access-Control-Allow-Origin *;
- add_header Access-Control-Allow-Headers X-Requested-With;
- add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
- ###end ###
- }