修复模块检查

This commit is contained in:
TOP糯米 2020-10-04 21:06:09 +08:00
parent ec7c2162a2
commit b24e68b834
1 changed files with 5 additions and 0 deletions

View File

@ -307,6 +307,11 @@ class Router
*/
public function handler($uri)
{
// 检查模块是否存在
if (!is_dir(APP_PATH . BIND_MODULE)) {
throw new RouteException('不存在的模块:' . BIND_MODULE);
}
// 如果为空则默认为/
$uri = $uri ? $uri : '/';
$defaultMethod = config('default_method');
$requestMethod = strtolower($this->request->requestMethod());