OK. Here's a solution. In includes/nukeSEO/nukeFEED.php, find:
Code: $feed = $db->sql_fetchrow($db->sql_query('SELECT * FROM '.$prefix.'_seo_feed WHERE fid = '.$fid));
|
Insert after:
Code: if ($feed['content']=='')
{
# header('HTTP/1.0 404 Not Found');
# header('Status: 404 Not Found');
header('Refresh: 0; url=invalidfeed'.$fid.'.html/', false, 404);
die('Invalid feed');
}
|
I left the first two headers as comments so you could test all 3 to see which works best for you.
Once I get enough feedback, I'll incorporate into the next release of nukeFEED and SVN for RavenNuke.