阿里云ECS跨域问题

设置 nginx.conf 配置文件

路径为:/usr/loca/nginx/conf/nginx.conf
配置项为;

#允许跨域访问
add_header 'Access-Control-Allow-Origin' '*'; #不限域名
#add_header 'Access-Control-Allow-Origin' 'http://dev.gongfuxiang.com'; #限制域名的方式
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'OPTION, POST, GET';
add_header 'Access-Control-Allow-Headers' 'X-Requested-With, Content-Type';

阿里云ECS跨域问题_第1张图片

你可能感兴趣的:(Java,Web)