本文經過設置Access-Control-Allow-Origin來實現跨域。php
例如:客戶端的域名是edu.jb51.net,而請求的域名是edu.jb51.net。html
若是直接使用ajax訪問,會有如下錯誤:linux
XMLHttpRequest cannot load http://edu.jb51.net/server.php. No 'Access-Control-Allow-Origin' header is present on the requested resource.Origin 'http://edu.jb51.net' is therefore not allowed access.
容許單個域名訪問ajax
指定某域名(http://edu.jb51.net)跨域訪問,則只需在http://edu.jb51.net/server.php文件頭部添加以下代碼:跨域
header('Access-Control-Allow-Origin:http://edu.jb51.net');
容許多個域名訪問.net
指定多個域名(http://edu.jb51.net、http://edu.jb51.net等)跨域訪問,則只需在http://edu.jb51.net/server.php文件頭部添加以下代碼:server
$origin = isset($_SERVER['HTTP_ORIGIN'])? $_SERVER['HTTP_ORIGIN'] : ''; $allow_origin = array( 'http://edu.jb51.net', 'http://edu.jb51.net' ); if(in_array($origin, $allow_origin)){ header('Access-Control-Allow-Origin:'.$origin); }
容許全部域名訪問htm
容許全部域名訪問則只需在http://edu.jb51.net/server.php文件頭部添加以下代碼:get
header('Access-Control-Allow-Origin:*');