我有以下代码用于执行重定向。如果 my$includeFile
不存在,它将重定向到 404 页面。这是我的一个片段index.php
if ( !file_exists($includeFile) )
Header( "HTTP/1.1 404 Page Not Found" );
Header( "Location: http://legascy.com/404_error/");
但http://legascy.com/404_error/
显示 HTTP 状态 200 OK 而不是 404。
如何解决这个问题?