例如:客户真个域名是xxx.xxx.net,而要求的域名是xxx.xxx.net。
如果直策应用ajax访问,会有以下缺点:
XMLHttpRequest cannot load http://xxx.xxx.net/server.php. No 'Access-Control-Allow-Origin' header is present on the requested resource.Origin 'http://xxx.xxx.net' is therefore not allowed access.
许可单个域名访问
指定某域名(http://xxx.xxx.net)跨域访问,则只需在http://xxx.xxx.net/server.php文件头部添加如下代码:
header('Access-Control-Allow-Origin:http://edu.jb51.net');
许可多个域名访问
指定多个域名(http://xxx.xxx.net、http://xxx.xx.net等)跨域访问,则只需在http://edu.jb51.net/server.php文件头部添加如下代码:
$origin = isset($_SERVER['HTTP_ORIGIN'])? $_SERVER['HTTP_ORIGIN'] : ''; $allow_origin = array( 'http://xxx.xxx.net', 'http://xxx.xxx.net' ); if(in_array($origin, $allow_origin)){ header('Access-Control-Allow-Origin:'.$origin); }
许可所有域名访问
许可所有域名访问则只需在http://xxx.xxx.net/server.php文件头部添加如下代码:
header('Access-Control-Allow-Origin:');