PHP 跨域之header
程序员文章站
2022-06-22 11:07:48
之前的博客里记录了PHP解决跨域的方案:JSONP;https://www.cnblogs.com/pawn-i/p/11899120.html 除了jsonp之后,还是通过header函数设置响应头解决跨域问题: 设置允许访问的域名: 设置允许访问的请求方式: 然后根据需要再设置其他的参数…… ......
之前的博客里记录了php解决跨域的方案:jsonp;
除了jsonp之后,还是通过header函数设置响应头解决跨域问题:
设置允许访问的域名:
- 允许全部的域名访问
header("access-control-allow-origin:*");
- 允许指定域名访问
header( 'access-control-allow-origin:http://a.test.com' );
设置允许访问的请求方式:
- 一种或者多种
header('access-control-allow-methods:post,get,options,delete');
- 全部
header('access-control-allow-methods:*');
然后根据需要再设置其他的参数……