php 设置允许跨域请求
作者:
zlchen | 来源:发表于
2020-08-20 13:07 被阅读0次<?php
header('Content-Type: text/html;charset=utf-8');
header('Access-Control-Allow-Origin:*'); // *代表允许任何网址请求
header('Access-Control-Allow-Methods:POST,GET,OPTIONS,DELETE'); // 允许请求的类型
header('Access-Control-Allow-Credentials: true'); // 设置是否允许发送 cookies
header('Access-Control-Allow-Headers: Content-Type,Content-Length,Accept-Encoding,X-Requested-with, Origin'); // 设置允许自定义请求头的字段
?>
本文标题:php 设置允许跨域请求
本文链接:https://www.haomeiwen.com/subject/bhmsjktx.html
网友评论