Skip to content

Instantly share code, notes, and snippets.

@CB9TOIIIA
Created January 24, 2018 10:14
Show Gist options
  • Save CB9TOIIIA/ec4c72614d1c5387d125288762ccd0ce to your computer and use it in GitHub Desktop.
Save CB9TOIIIA/ec4c72614d1c5387d125288762ccd0ce to your computer and use it in GitHub Desktop.
404 joomla
<?php
defined('_JEXEC') or die;
if (($this->error->getCode()) == '404') {
header("HTTP/1.0 404 Not Found");
$url=JURI::root()."index.php?option=com_content&view=article&id=143";
$data = file_get_contents($url) or die("Cannot open URL");
echo $data;
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment