我有网址:
site.com/sdfsdfsdfsd
- 404工作
site.com/ru/page/sdfasdfasfasdfsad
- 无法正常工作,我会重定向到主页
$router->add('/', array(
'module' => 'frontend',
'controller' => 'index',
'action' => 'index',
'lang' => 'md',
))->setName('default');
$router->add('/{lang:[' . $langsDefined . ']{2}+}(/?)', array(
'module' => 'frontend',
'controller' => 'index',
'action' => 'index',
'lang' => 1,
))->setName('default_lang');
我如何解决这个问题?
$router = new \Phalcon\Mvc\Router(false);
$router->notFound(array(
"controller" => "Notfound",
"action" => "index"
));
方法NotFound
无效。我重定向到主页!
答案 0 :(得分:0)
请注意命名空间,你可以这样试试:
$router->notFound(array(
"module" => "frontend",
"controller" => "Notfound",
"action" => "index"
));