ajax 跨域解决方案
Posted 百里屠苏phper
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax 跨域解决方案相关的知识,希望对你有一定的参考价值。
第一步:配置php 后台允许跨域
<?php header(‘Access-Control-Allow-Origin: *‘); header(‘Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept‘); //主要为跨域CORS配置的两大基本信息,Origin和headers
第二步:配置Apache web服务器跨域(httpd.conf中)
原始代码
<Directory />
AllowOverride none
Require all denied
</Directory>
改为以下代码
<Directory /> Options FollowSymLinks AllowOverride none Order deny,allow Allow from all </Directory>
第三部,重启apache
以上是关于ajax 跨域解决方案的主要内容,如果未能解决你的问题,请参考以下文章