💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 跨域 ## nginx 代理 ``` location /apis { rewrite ^.+apis/?(.*)$ /$1 break; include uwsgi_params; proxy_pass http://api.xiaoan.mogo.club; } ``` ## header 发送的option请求返回200即可跨域 ``` header('Access-Control-Allow-Origin:*'); if($this->request->isOptions()){ header('content-type:application:json;charset=utf8'); header('Access-Control-Allow-Methods:POST'); header('Access-Control-Allow-Headers:x-requested-with,content-type'); exit; } ```