Skip to content

Instantly share code, notes, and snippets.

@hans2103
Created November 17, 2015 10:51
Show Gist options
  • Save hans2103/8ca9264ef58f9e4135fb to your computer and use it in GitHub Desktop.
Save hans2103/8ca9264ef58f9e4135fb to your computer and use it in GitHub Desktop.
show content of given Joomla article on 404 page.
<?php
/**
*/
defined('_JEXEC') or die;
if (($this->error->getCode()) == '404') {
header("HTTP/1.0 404 Not Found");
echo file_get_contents(JURI::root().'index.php?option=com_content&view=article&id=44&Itemid=584');
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment