weixin_33709609 2015-12-21 07:07 采纳率: 0%
浏览 53

用PHP实现CORS

Simply I'm making an app using Codeigniter as PHP framework and I'm using API for rendering the view on cross site with ajax request. Now my problem is I have hosted all my files in one site say homnath.com.np and provided the API key to different websites by storing their webURL into database, say abc.com, xyz.com and many others. Now when xyz.com hits in my site homnath.com by ajax, how could I know the webURL that is hitting on my site homnath.com by API key, and how to allow for it for CORS if it is a valid and listed website. Moreover I have used header("Access-Control-Allow-Origin: *"); to allow for all webURLS and now I want to filter them and provide access to only those which are listed on my database. How can I do it in controller of codeigniter. I want to block for rest of the sites.

  • 写回答

1条回答 默认 最新

  • python小菜 2016-01-08 08:14
    关注

    for this you can check for the URL as

             $incomingOrigin = $webURL;
    
             $hotdat = array();
              foreach ($hotelURL as $releted){         //$hotelURL is an array from your database
              $addURL = $releted->url;              // $releted->url the db field name for url
             array_push($hotdat, $addURL);
             }
    
           if ($incomingOrigin !== null && isOriginAllowed($incomingOrigin, $hotdat)== TRUE)
          {
           header("Access-Control-Allow-Origin: $incomingOrigin");
         }else{
            echo ("CSRF protection in POST request: detected invalid Origin header: " . $incomingOrigin);
       header("Access-Control-Allow-Origin: http://bookingpoints.com");
         }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 数据量少可以用MK趋势分析吗
  • ¥15 使用VH6501干扰RTR位,CANoe上显示的错误帧不足32个就进入bus off快慢恢复,为什么?
  • ¥15 大智慧怎么编写一个选股程序
  • ¥100 python 调用 cgps 命令获取 实时位置信息
  • ¥15 两台交换机分别是trunk接口和access接口为何无法通信,通信过程是如何?
  • ¥15 C语言使用vscode编码错误
  • ¥15 用KSV5转成本时,如何不生成那笔中间凭证
  • ¥20 ensp怎么配置让PC1和PC2通讯上
  • ¥50 有没有适合匹配类似图中的运动规律的图像处理算法
  • ¥15 dnat基础问题,本机发出,别人返回的包,不能命中