I removed the embeds and place minimal code within the conditional statement. (see code below) I was still redirected to the 404 page.
I played around with it and even if I remove the {if no_results}{redirect="site/404"}{/if} from the if logged in section I’m still redirected. If I remove it from both sections it works, BUT then page (minus the article) still loads for the logged out user. This doesn’t seem right to me.
What are your thoughts now?
{if logged_in_group_id == 1 || logged_in_group_id == 6 }
<!-- =========================================================== -->
<!-- ! ARTICLES LISTED IF SUPER ADMIN OR MANAGER -->
<!-- =========================================================== -->
{exp:weblog:entries weblog="equine-news" limit="1" disable="member_data|comments|trackbacks|pagination" status="Announcement|Open|Draft" status="not Closed" require_entry="yes" url_title="{segment_3}"}
{if no_results}{redirect="site/404"}{/if}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" media="screen,projection" href="/memanager/templates/css/reset.css" />
<link rel="stylesheet" type="text/css" media="screen,projection" href="/memanager/templates/css/960.css" />
<link rel="stylesheet" type="text/css" media="screen,projection" href="/memanager/templates/css/style.css" />
</head>
{/exp:weblog:entries}
{/if}
{if logged_out}
{exp:weblog:entries weblog="equine-news" limit="1" disable="member_data|comments|trackbacks|pagination" status="Open|Announcement" status="not Closed|Draft" require_entry="yes" url_title="{segment_3}"}
{if no_results}{redirect="site/404"}{/if}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" media="screen,projection" href="/memanager/templates/css/reset.css" />
<link rel="stylesheet" type="text/css" media="screen,projection" href="/memanager/templates/css/960.css" />
<link rel="stylesheet" type="text/css" media="screen,projection" href="/memanager/templates/css/style.css" />
</head>
{/exp:weblog:entries}
{/if}