Yes, the “fix” at https://mosquito.www.ads-software.com/view.php?id=903 also worked for me with fresh installs of WordPress 1.5. Glad to find this discussion. ?? Repeating what “toby” wrote there:
—
Not sure why these lines are there, but if you comment out lines 112-115 of wp-blog-header.php, RSS feeds work. In other words, take these lines:
————–
????????if ( preg_match(‘/cgi/’, php_sapi_name()) )
????????????????@header(‘Status: 404 Not Found’);
????????else
????????????????@header(‘HTTP/1.x 404 Not Found’);
————–
and turn them into this:
————–
/* if ( preg_match(‘/cgi/’, php_sapi_name()) )
????????????????@header(‘Status: 404 Not Found’);
????????else
????????????????@header(‘HTTP/1.x 404 Not Found’); */
————–
—