多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 域名路由 域名路由用于匹配域名 ~~~ /** * 域名路由 * @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']] ], ~~~