Error 500 when adding redirects for errors 425 to 499

1

I have a .htdocs file where it has several error redirects in it (it has all error types HTTP , and that's all it has in the file): ErrorDocument 400 /PROJETOS/error.php?status=error_400 but when I add respective lines to errors HTTP 425 to HTTP 499 gives internal server error HTTP 500 . Does anyone know why?

Version: Apache 2.4.10

Log:

[core:alert] [pid 5676:tid 1644] [client ::1:54077] C:/xampp/htdocs/PROJETOS/.htaccess: Unsupported HTTP response code 425
[Tue May 26 13:46:38.149363 2015] [core:alert] [pid 5676:tid 1644] [client ::1:54080] C:/xampp/htdocs/PROJETOS/.htaccess: Unsupported HTTP response code 450
[Tue May 26 13:46:45.820801 2015] [core:alert] [pid 5676:tid 1688] [client ::1:54082] C:/xampp/htdocs/PROJETOS/.htaccess: Unsupported HTTP response code 450
[Tue May 26 13:46:52.481182 2015] [core:alert] [pid 5676:tid 1668] [client ::1:54084] C:/xampp/htdocs/PROJETOS/.htaccess: Unsupported HTTP response code 499
    
asked by anonymous 30.05.2015 / 17:00

1 answer

0

As said by the @qmechanik user these codes are invalid or not yet implemented as you can see on the IANA (Internet Assigned Numbers Authority):

425 Unassigned  
426 Upgrade Required    [RFC7231, Section 6.5.15]
427 Unassigned
430 Unassigned
432-499 Unassigned
    
24.06.2015 / 14:55