서버 측 크로스 도 메 인 설정 PHP

서버 측 크로스 도 메 인 설정 PHP
  $allowHosts = ['http://www.xxx.xxx'];

   $requestHost = $req->server('HTTP_ORIGIN','');//          

   if(in_array($requestHost,$allowHosts)){

       header("Access-Control-Allow-Origin:".$requestHost);

       header("Access-Control-Allow-Headers:X-Requested-With,Content-Type");

       header("Access-Control-Allow-Methods:post");

       header("Access-Control-Allow-Credentials:true");
   }

좋은 웹페이지 즐겨찾기