案例:PHP Ajax 跨域最佳解決方案

本文經過設置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:*');

 

本文地址:https://www.linuxprobe.com/php-ajax-cross.html域名

相關文章
相關標籤/搜索