This commit is contained in:
2021-09-18 17:10:13 +08:00
parent f880ebc4e4
commit a6b95adc9b
+1 -1
View File
@@ -174,7 +174,7 @@ class Router
if (empty($prefix = array_filter($prefix))) {
return '/' . $route;
}
return '/' . implode('/', $prefix) . $route;
return '/' . implode('/', $prefix) . '/' . $route;
}