fix 404 page http code
This commit is contained in:
parent
5acdd0a69a
commit
3c3d0bf51b
@ -90,9 +90,6 @@ class Website
|
||||
{
|
||||
try
|
||||
{
|
||||
$frameOpt->statuscode = 404;
|
||||
$frameOpt->title = 'Page not found';
|
||||
|
||||
$route = URLRoute::getNotFoundRoute($uri);
|
||||
|
||||
$route->parameter['message'] = $message;
|
||||
@ -119,9 +116,6 @@ class Website
|
||||
try
|
||||
{
|
||||
if ($frameOpt === null) $frameOpt = new PageFrameOptions();
|
||||
|
||||
$frameOpt->statuscode = 500;
|
||||
$frameOpt->title = 'Internal Server Error';
|
||||
$frameOpt->frame = 'error_frame.php';
|
||||
|
||||
$route = URLRoute::getServerErrorRoute($_SERVER['REQUEST_URI']);
|
||||
|
@ -10,6 +10,7 @@ require_once (__DIR__ . '/../internals/website.php');
|
||||
$message = isset($ROUTE->parameter['message']) ? $ROUTE->parameter['message'] : '';
|
||||
|
||||
$FRAME_OPTIONS->title = $message;
|
||||
$FRAME_OPTIONS->statuscode = 404;
|
||||
$FRAME_OPTIONS->canonical_url = null;
|
||||
$FRAME_OPTIONS->activeHeader = null;
|
||||
$FRAME_OPTIONS->contentCSSClasses []= 'content-fullheight';
|
||||
|
@ -8,6 +8,7 @@ require_once (__DIR__ . '/../internals/website.php');
|
||||
|
||||
<?php
|
||||
$FRAME_OPTIONS->title = 'Error';
|
||||
$FRAME_OPTIONS->statuscode = 404;
|
||||
$FRAME_OPTIONS->canonical_url = null;
|
||||
$FRAME_OPTIONS->activeHeader = null;
|
||||
$FRAME_OPTIONS->contentCSSClasses []= 'content-fullheight';
|
||||
|
Loading…
Reference in New Issue
Block a user