getEnabled()) { $this->_redirectUrl(Mage::helper('core/url')->getHomeUrl()); } } public function viewAction() { $identifier = $this->getRequest()->getParam('identifier', $this->getRequest()->getParam('id', false)); if (!Mage::helper('blog/cat')->renderPage($this, $identifier)) { $this->_forward('NoRoute'); } } public function noRouteAction($coreRoute = null) { $this->getResponse()->setHeader('HTTP/1.1', '404 Not Found'); $this->getResponse()->setHeader('Status', '404 File not found'); $pageId = Mage::getStoreConfig('web/default/cms_no_route'); if (!Mage::helper('cms/page')->renderPage($this, $pageId)) { $this->_forward('defaultNoRoute'); } } }