// +---------------------------------------------------------------------- use think\facade\Route; Route::get('think', function () { return 'hello,ThinkPHP5!'; }); Route::get('hello/:name', 'index/hello'); // 加载Common模块路由配置 include __DIR__ . '/../application/common/config/route.php'; return [];