1. 程式人生 > >ajax 跨域解決方案

ajax 跨域解決方案

AC head -a PE web cto options 方案 col

第一步:配置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 跨域解決方案