[0] HttpException in Url.php line 64

controller not exists:aaa-safe-leather-desk-pad-protector-mouse-pad-office-desk-mat-non-slip-pu-leather-desk-blotter-laptop-desk-pad-waterproof-desk-writing-pad-for-office-and-home-100-x-40-dark-blue-yellow

  1. if ($this->param['auto_search']) {
  2. $controller = $this->autoFindController($module, $path);
  3. } else {
  4. // 解析控制器
  5. $controller = !empty($path) ? array_shift($path) : null;
  6. }
  7. if ($controller && !preg_match('/^[A-Za-z][\w|\.]*$/', $controller)) {
  8. throw new HttpException(404, 'controller not exists:' . $controller);
  9. }
  10. // 解析操作
  11. $action = !empty($path) ? array_shift($path) : null;
  12. // 解析额外参数
  13. if ($path) {
  14. if ($this->rule->getConfig('url_param_type')) {
  15. $var += $path;

Call Stack

  1. in Url.php line 64
  2. at Url->parseUrl('products|aaa-safe-le...') in Url.php line 23
  3. at Url->init() in App.php line 402
  4. at App->run() in index.php line 25