本文通過設置Access-Control-Allow-Origin來實現跨域。
例如:客戶端的域名是client.baidu.com,而請求的域名是waterplane.cn。
如果直接使用ajax訪問,會有以下錯誤:
XMLHttpRequest cannot load http://waterplane.cn/. No 'Access-Control-Allow-Origin' header is present on the requested resource.Origin 'http://client.baidu.com' is therefore not allowed access.
指定某域名(http://client.baidu.com)跨域訪問,則只需在http://waterplane.cn/文件頭部添加如下代碼:
header('Access-Control-Allow-Origin:http://client.baidu.com');
指定多個域名(http://client1.baidu.com、http://client2.baidu.com等)跨域訪問,則只需在http://waterplane.cn/文件頭部添加如下代碼:
$origin = isset($_SERVER['HTTP_ORIGIN'])? $_SERVER['HTTP_ORIGIN'] : ''; $allow_origin = array( 'http://client1.baidu.com', 'http://client2.baidu.com' ); if(in_array($origin, $allow_origin)){ header('Access-Control-Allow-Origin:'.$origin); }
允許所有域名訪問則只需在http://waterplane.cn/文件頭部添加如下代碼:
header('Access-Control-Allow-Origin:*');
原文出自:http://www.runoob.com/w3cnote/php-ajax-cross-border.html 感謝作者分享。
文章轉載請保留網址:http://waterplane.cn/news/solutions/1594.html