From 68399a58777bb330f7c2aed4af2126e753dae033 Mon Sep 17 00:00:00 2001 From: AaronLiu Date: Sat, 22 Dec 2018 12:23:52 +0800 Subject: [PATCH] fix: route checking --- thinkphp/library/think/App.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/thinkphp/library/think/App.php b/thinkphp/library/think/App.php index 07c09816..7b27a15d 100644 --- a/thinkphp/library/think/App.php +++ b/thinkphp/library/think/App.php @@ -372,7 +372,11 @@ class App // 获取控制器名 $controller = strip_tags($result[1] ?: $config['default_controller']); $controller = $convert ? strtolower($controller) : $controller; - + + if (!preg_match('/^[A-Za-z](\w|\.)*$/', $controller)) { + throw new HttpException(404, 'controller not exists:' . $controller); + } + // 获取操作名 $actionName = strip_tags($result[2] ?: $config['default_action']); $actionName = $convert ? strtolower($actionName) : $actionName; @@ -551,9 +555,6 @@ class App if (is_file(CONF_PATH . $file . CONF_EXT)) { // 导入路由配置 $rules = include CONF_PATH . $file . CONF_EXT; - if (!preg_match('/^[A-Za-z](\w|\.)*$/', $controller)) { - throw new HttpException(404, 'controller not exists:' . $controller); - } if (is_array($rules)) { Route::import($rules); }