1

I'm looking for a way to redirect to an /error.php page when a fatal php error occurs. I have htaccess setup to log errors, but how can I redirect on fatal error using htaccess?

4

1 回答 1

2

使用带有关闭功能的标头在致命错误时转发它们。

register_shutdown_function('forward_fatal');
function forward_fatal(){
    header("Location: error.php");
}
于 2013-02-22T02:42:50.777 回答