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

用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 Stata链式中介效应代码修改
  • ¥15 latex投稿显示click download
  • ¥15 请问读取环境变量文件失败是什么原因?
  • ¥15 在若依框架下实现人脸识别
  • ¥15 添加组件无法加载页面,某块加载卡住
  • ¥15 网络科学导论,网络控制
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错