nginx中配置跨域支持功能
程序员文章站
2022-04-29 11:10:54
...
在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的跨域请求的支持
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;
转载地址:http://www.51testing.com/html/96/215196-829360.html
以上就介绍了nginx中配置跨域支持功能,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。