要在PHP中實(shí)現(xiàn)跨域資源共享(CORS)以兼容舊瀏覽器,可以嘗試以下方法:
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
header("Access-Control-Allow-Headers: Content-Type");
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Methods "GET, POST, OPTIONS"
Header set Access-Control-Allow-Headers "Content-Type"
</IfModule>
無(wú)論選擇哪種方法,都應(yīng)該確保在處理跨域請(qǐng)求時(shí),安全性得到保障,不要暴露敏感信息。