hello,
does anyone know whether it is possible to make apache use its error document for a particular http error status such as 400 bad request sent from a "normal" php script? by normal i mean this page is not a part of any filter, etc.
currently, i just have
<?php
header('HTTP/1.1 400 Bad Request');
exit;
?>
but this shown an empty page in the browser. i want to show the contents of the corresponding apache error document for this error status.
thanks in advance
konstantin