PHP允许JS(xmlHttp)、AJAX跨域的设置方法

后端开发   发布日期:2023年05月14日   浏览次数:248

在被访问的PHP页面头部加入以下代码,即可实现允许JS跨域访问。

<?php
    header("access-control-allow-headers: Accept,Authorization,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,User-Agent,X-Mx-ReqToken,X-Requested-With");
    header("access-control-allow-methods: GET");//GET, POST, PUT, DELETE, HEAD, OPTIONS
    header("access-control-allow-credentials: true");
    header("access-control-allow-origin: *");
    header('X-Powered-By: WAF/2.0');


以上就是PHP允许JS(xmlHttp)、AJAX跨域的设置方法的详细内容,更多关于PHP允许JS(xmlHttp)、AJAX跨域的设置方法的资料请关注九品源码其它相关文章!