I customized a theme from a tutorial: http://www.webdesignerwall.com/tutorials/building-custom-wordpress-theme/
Permalinks are not working on index.php, but are working on all other pages.(single) I get a 404 in my home page. See: blog.utterlyorganized.net. I tried changing permissions on .htaccess. Could there be something wrong with my index page? The index page displays recent posts as it should when permalinks is set to default.
PHP is not my strong suit. Here is the call in the index page:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<div class="post-date"><span class="post-month"><?php the_time('M') ?></span> <span class="post-day"><?php the_time('j') ?> <?php the_pageview(); ?></span></div>
<div class="post-title">
<h2>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></h2>
<span class="post-cat"><?php the_category(', ') ?></span>
<span class="post-comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
</div>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<span class="previous-entries"><?php next_posts_link('Older Entries') ?></span>
<span class="next-entries"><?php previous_posts_link('Newer Entries') ?></span>
</div>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
I will try a different theme, but would like some input on finding and fixing the problem. Thanks!