From b07a5952b748c0786c8519ba5c6d6fda750a510f Mon Sep 17 00:00:00 2001 From: Zhao <756958008@qq.com> Date: Mon, 2 Jul 2018 16:39:44 +0800 Subject: [PATCH] =?UTF-8?q?fixed=20=E4=BF=AE=E5=A4=8D=E8=B7=AF=E7=94=B1BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/adminRoute.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/adminRoute.php b/application/adminRoute.php index edf05c7..86046e5 100644 --- a/application/adminRoute.php +++ b/application/adminRoute.php @@ -11,11 +11,11 @@ $afterBehavior = [ Route::group('admin', function () use ($afterBehavior) { //一些带有特殊参数的路由写到这里 Route::rule([ - 'admin/Login/index' => [ + 'Login/index' => [ 'admin/Login/index', ['method' => 'post'] ], - 'admin/Index/upload' => [ + 'Index/upload' => [ 'admin/Index/upload', [ 'method' => 'post', @@ -25,7 +25,7 @@ Route::group('admin', function () use ($afterBehavior) { ] ] ], - 'admin/Login/logout' => [ + 'Login/logout' => [ 'admin/Login/logout', [ 'method' => 'get',