1.nginx跨域请求访问

location ~ .*\.(htm|html)$ {
        add_header Access-Control-Allow-Origin(请求域名) *(所有域名) https://www.baidu.com(指定站点);   # 跨站请求访问设置
        add_header Access-Control-Allow-Methods(请求方法) GET,POST,PUT,DELETE,OPTIONS;  # 跨站请求访问设置
        expires 24h(缓存周期);
        root  /opt/app/code;
    }