[0] HttpException in Module.php line 66

模块不存在:category.php

  1. $this->app['lang']->load($this->app->getAppPath() . $module . '/lang/' . $this->app['request']->langset() . '.php');
  2. // 模块请求缓存检查
  3. $this->app['request']->cache(
  4. $this->app->config('app.request_cache'),
  5. $this->app->config('app.request_cache_expire'),
  6. $this->app->config('app.request_cache_except')
  7. );
  8. } else {
  9. throw new HttpException(404, 'module not exists:' . $module);
  10. }
  11. } else {
  12. // 单一模块部署
  13. $module = '';
  14. $this->app['request']->module($module);
  15. }
  16. // 当前模块路径
  17. $this->app->setModulePath($this->app->getAppPath() . ($module ? $module . '/' : ''));

Call Stack

  1. in Module.php line 66
  2. at Module->run() in Url.php line 26
  3. at Url->run() in App.php line 363
  4. at App->run() in index.php line 25