Merhaba bir joomla makale 404 hataları vb yönlendirmek için joomla için bir error.php oluşturduk. Aşağıdaki kod, bir 404 hatası için çalışıyor, ama bir 403 boş bir sayfa döndürür. Benim kod ya da nasıl onu ortamında interaktif ya olmalıdır yüzden benim komut dosyası dışında doğrudan sayfasına gidebilirsiniz.
Thanks Stephen
defined( '_JEXEC' ) or die( 'Restricted access' );
if ($this->error->code == 404)
{
Header( "HTTP/1.1 404 Not found" );
header("Location: http://www.queensberry.com/misc/filenotfound/");
} else if ($this->error->code == 403) {
Header( "HTTP/1.1 403 Restricted Content" );
Header( "Location: http://www.queensberry.com/restrictedcontent/" );
} else {
echo "hello world error code = " . $this->error->code;
}
?>