💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 域名路由 域名路由用于匹配域名 ~~~ /** * 域名路由 * @param [type] $domain [要匹配的域名] * @param string $route [路由地址] * @param array $option [选项] * @param array $behavior [匹配后的行为] * @return [type] [description] */ public function domain($domain, $route = '', $option = [], $behavior = []) ~~~ ~~~ Route::domain('127.0.0.1', 'index/index/index', [], ['QSA=cid=2']); // 支持泛域名 重定向到www.puaok.com Route::domain('*.pjcy.cn','http://www.puaok.com',[],['R=301']); ~~~ 配置文件方式: ~~~ // 域名 'domain' => [ ['127.0.0.1', 'index/index/index', [], ['QSA=cid=2']], ['*.pjcy.cn','http://www.puaok.com',[],['R=301']] ], ~~~