ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 域名路由 域名路由用于匹配域名 ~~~ /** * 域名路由 * @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']] ], ~~~