PHP允许JS跨域

后端开发   发布日期:2023年05月07日   浏览次数:237
<?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跨域的详细内容,更多关于PHP允许JS跨域的资料请关注九品源码其它相关文章!