Ok, ya lo solucione, tenía mal el header y lo arregle escribiendo esto:
Código PHP:
{
$sql = "UPDATE noticias SET respuestas=respuestas+1, ult_respuesta=NOW()";
$sql.= " WHERE id = $identificador";
$rs = mysql_query($sql, $con);
header("Location: ver_noticia.php?id=$identificador#$ult_id");
exit();
}