标签: php magento routing http-status-code-404
有没有办法从块或模板中检查您所在的页面是否为404?
答案 0 :(得分:8)
404页面由Mage_Cms_IndexController::noRouteAction()在一个vanilla Magento安装中呈现,所以你可以尝试这样的事情:
Mage_Cms_IndexController::noRouteAction()
$action = Mage::app()->getRequest()->getActionName() if($action == 'noRoute'){ //do some stuff }