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; }