I am using the Tofurious theme and get a 404 error when trying to check my feed. I get the error that the requested URL/feed does not exist. requested URL /feed does not exist. The feed works when I change themes, so there is something wrong in the theme code. Here is a copy of my header php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?>" href="<?php echo get_option('home'); ?>/feed" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/style.css" />
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/menu.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/jquery.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/comment.js"></script>
<?php wp_head(); ?>
</head>
<body>
<!--main container-->
<div id="main">
<!--header-->
<div id="header">
<div id="logo">
<a href="<?php echo get_option('home'); ?>/">
<img alt="logo" class="center2" src="<?php bloginfo('stylesheet_directory'); ?>/images/logo.jpg" />
</a>
</div>
<ul id="menu">
<li><a href="<?php echo get_option('home'); ?>/">HOME</a></li>
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
<li>
<a href="#">CATEGORIES</a>
<ul>
<?php wp_list_categories('show_count=&title_li=0'); ?>
</ul>
</li>
<li><a href="#">ARCHIVES</a>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<li>
<a href="#">LINKS</a>
<ul>
<?php wp_list_bookmarks('title_li=&categorize=0&title_before=<li>&title_after=</li>'); ?>
</ul>
</li>
</ul>
<div id="banner">
<a href="<?php echo get_option('home'); ?>/"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/img.jpg" alt="" /></a>
</div>
<div class="holder">
<ul>
<li class="text">
<strong>Announcements</strong>
<p>
This blog is not active yet<br />
Moving to back to Mississippi in November
</p>
</li>
<li class="search">
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
</li>
<li class="rss">
<a href="<?php bloginfo('rss2_url'); ?>">rss</a>
</li>
</li>
</ul>
</div>
</div>