🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 域名路由 域名路由用于匹配域名 ~~~ /** * 域名路由 * @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']] ], ~~~