【发布时间】:2016-03-29 18:01:17
【问题描述】:
我已经设置了一个路由器,并在其中为 404 定义了一条路由:
<?php
use Phalcon\Mvc\Router;
$router = new Router(FALSE);
$router->removeExtraSlashes(true);
$route = $router->add('/', ['controller' => 'index', 'action' => 'index']);
$route->setName("index");
// other routes defined here...
$router->notFound([
"controller" => "index",
"action" => "route404"
]);
?>
我的索引控制器:
<?php
class IndexController extends ControllerBase
{
public function indexAction()
{
// code removd for berevity
}
public function route404Action() {
// no code here, I just need to show the view.
}
}
?>
我有一个视图 @/app/views/index/route404.phtml,其中只有一点 HTML,我什至尝试将其设为 .volt 文件,但不走运。
当我转到一个与任何路由都不匹配的页面时,它可以正常工作。但是,如果我尝试重定向到它,我只会得到一个空白页。例如,在我的一个控制器中,我有这个:
if (!$category) {
// show 404
//Tried this next line to test, and it indeed does what you'd expect, I see "Not Found".
// echo "Not Found"; exit;
$response = new \Phalcon\Http\Response();
$response->redirect([
"for" => "index",
"controller" => "index",
"action" => "route404"]
);
return; // i return here so it won't run the code after this if statement.
}
有什么想法吗?该页面完全空白(源代码中没有任何内容),并且我的 apache 日志中没有错误。
【问题讨论】: