hi i new i wordpress
i show post in front page (index.php)
<?php query_posts('category_name=news&posts_per_page=5'); ?>
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<div class="post abc">
<div class="entry" >
<a href="<?php the_permalink(); ?>"><?php the_time('j F Y')?><?php the_excerpt(); ?></a>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<div class="post" Add id="post-<?php the_ID(); ?>" to <div class="post">>
<h2><?php _e('Not Found'); ?></h2>
</div>
<?php endif; ?>
and the problem is the link is does't link to my single-news.php
it's links to localhot/<name site>/<category>/<title>
any solution ?