本文摘抄自:https://78.al/index.php/post/34.html
只是为了自己做备份。
打开苹果cms站点,找到如下位置:
application/api/controller/Provide.php
在对应的位置填写如下内容:
允许部分域名使用
$origin = isset($_SERVER['HTTP_ORIGIN'])? $_SERVER['HTTP_ORIGIN'] : '';
// 允许跨域的域名写在数组里,
$allow_origin = array('http://xxx.com','http://xxx.cn' );
if(in_array($origin, $allow_origin)){
header('Access-Control-Allow-Origin:'.$origin);
}
评论区