404 Error Handling in Joomla
404 Error Handling in Joomla
Modify error.php to Redirect 404 Errors to your 404 Article
defined( ‘_JEXEC’ ) or die( ‘Restricted access’ );
if (($this->error->code) == ’404′)
{header
(‘Location: index.php’);
exit;
}
404 Error Handling in Joomla
Modify error.php to Redirect 404 Errors to your 404 Article
defined( ‘_JEXEC’ ) or die( ‘Restricted access’ );
if (($this->error->code) == ’404′)
{header
(‘Location: index.php’);
exit;
}