This commit is contained in:
杨志
2026-01-22 14:35:17 +08:00
parent edc9218063
commit 42118bec62
2 changed files with 1 additions and 13 deletions

View File

@@ -9,13 +9,6 @@
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\facade\Route;
Route::get('think', function () {
return 'hello,ThinkPHP8!';
});
Route::get('hello/:name', 'index/hello');
// 认证路由(不需要登录)
Route::get('login', 'auth/login');
Route::post('auth/doLogin', 'auth/doLogin');