// +---------------------------------------------------------------------- use think\facade\Route; // v1版本路由定义 Route::group('v1', function () { // 用户模块 Route::group('user', function () { // 获取验证码 Route::get('captcha', 'Captcha/index'); // 登录接口 Route::post('login', 'Login/index'); }); })->prefix('v1.'); Route::miss(function() { return '404 Not Found!'; });