php 跨域问题的解决主要有两步:

  本人使用的是  windows下的 phpstudy的集成环境

  1.修改服务器配置文件

  在 apache 的配置文件  D:\phpStudy\Apache\conf  ( 以自己的文件目录为准 ) 目录下的 vhosts.conf 加入

  #跨域配置
  Header set Access-Control-Allow-Origin *
  Header set Access-Control-Request-Method GET,POST,PUT
  Header set Access-Control-Allow-Credentials true
  Header set Access-Control-Allow-Headers X-Custom-Header

  

  2..编辑httpd.conf

  在apache的配置文件中的 httpd.conf,找到这行

  #LoadModule headers_module modules/mod_headers.so

  把#注释符去掉

  LoadModule headers_module modules/mod_headers.so

  目的是开启apache头信息自定义模块

  3.最后重启apache

  

  ps:当遇到是ip去访问时,发现仍然报错  跨域问题

    则 需在 httpd.conf中    添加 Header set Access-Control-Allow-Origin *   就OK了,最后在重启apache

  <Directory />
  Options +Indexes +FollowSymLinks +ExecCGI
  AllowOverride All
  Order allow,deny
  Allow from all
  Require all granted
  Header set Access-Control-Allow-Origin *
  </Directory>

posted on 2018-08-13 15:11  cx小橙  阅读(872)  评论(0编辑  收藏  举报