songxingwei 3 tahun lalu
induk
melakukan
202cc54133
1 mengubah file dengan 15 tambahan dan 1 penghapusan
  1. 15 1
      public/index.php

+ 15 - 1
public/index.php

@@ -17,5 +17,19 @@ namespace think;
 
 require __DIR__ . '/../thinkphp/base.php';
 
-header('Access-Control-Allow-Origin: *');
+//跨域请求设置
+
+header('Access-Control-Allow-Origin:*');
+header('Access-Control-Allow-Credentials:true');
+header('Access-Control-Allow-Methods:GET,POST,PUT,OPTIONS,PATCH,DELETE,HEAD');
+
+header('Access-Control-Allow-Headers:Origin,X-Requested-With, Content-Type, Accept, x-access-sign, x-access-time, uid,Access-Control-Allow-Credentials,Access-Token,access-token,token,access-control-allow-origin,Token,Access-Control-Allow-Origin,Content-Type,Referer,User-Agent');
+
+
+
+ini_set("session.cookie_httponly", false);
+
+
+
+
 Container::get('app')->run()->send();