0
我有下面這段代碼處理404錯誤,但我想重定向所有的404錯誤,主頁,這裏就是我:PHP的錯誤日誌404並重定向到主頁
function show_404($page = '', $log_error = TRUE)
{
$heading = "404 Page Not Found";
$message = "The page you requested was not found.";
// By default we log this, but allow a dev to skip it
if ($log_error)
{
log_message('error', '404 Page Not Found --> '.$page);
}
echo $this->show_error($heading, $message, 'error_404', 404);
exit;
}
我怎麼能重定向到主頁而不是給404錯誤。
重定向到主頁,然後顯示實際的錯誤? – pmahomme
'header(「location:index.php」)',你想知道如何重定向? –
[Php header redirect]可能重複(http://stackoverflow.com/questions/4934357/php-header-redirect) –