parser

Написать ответ на текущее сообщение

 

 
   команды управления поиском

На тему старого поста PAFа про 404

Gleb 17.12.2003 12:14

Вот код, приведенный для обработки 404:

@unhandled_exception[exception;stack]
^if($exception.type eq 'file.missing' && !$stack){
$exception.handled(1)
$response:location[/404/]
}{
^if(0 #<< тут ваше условие <<){
^unhandled_exception_debug[$exception;$stack]
}{
^unhandled_exception_release[$exception;$stack]
}
}

Вопрос: почему не $response:code[404]? Вроде бы грамотней?