<?php use think\facade\Route; Route::get('xx', function (){ echo 'hello world'; }); Route::group('city',function (){ Route::get('hello','index/hello'); Route::get('test','index/test'); });