Hai all, i’ve solved the problem, now it runs well.
The root of the problem in my server is php (php sapi) installed as cgi not cli, just comment several lines in function status_header() in wp-includes/functions.php.
function status_header( $header ) {
if ( 200 == $header )
$text = ‘OK’;
elseif ( 301 == $header )
$text = ‘Moved Permanently’;
elseif ( 302 == $header )
$text = ‘Moved Temporarily’;
elseif ( 304 == $header )
$text = ‘Not Modified’;
elseif ( 404 == $header )
$text = ‘Not Found’;
elseif ( 410 == $header )
$text = ‘Gone’;
// if ( substr(php_sapi_name(), 0, 3) == ‘cgi’ )
// @header(“HTTP/1.1 $header $text”);
// else
@header(“Status: $header $text”);
}