From a6b95adc9b3d31c6dfa353c23f86d744fe33e89c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Sat, 18 Sep 2021 17:10:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- http-handler/Router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http-handler/Router.php b/http-handler/Router.php index e6d84485..051e1924 100644 --- a/http-handler/Router.php +++ b/http-handler/Router.php @@ -174,7 +174,7 @@ class Router if (empty($prefix = array_filter($prefix))) { return '/' . $route; } - return '/' . implode('/', $prefix) . $route; + return '/' . implode('/', $prefix) . '/' . $route; }