TP版本:ThinkPHP V5.0.4
Route::domain('www', function(){
Route::get('top', function(){return 'top';}); //URL:www.code.com/top 问题:加上这句后,下面的分组路由会失效
Route::group("1", function(){
Route::get('b', function(){return 'c';}); //URL:www.code.com/1/b
});
});访问:www.code.com/1/b