I am novice in wordpress. Recently i create a blog which home page shows the recent 10 post. When it increase more than 10 post then it show next page link. This link is generated by below code :
<div class="next-posts"><?php next_posts_link('« Older Entries') ?></div>
When i click this link it goes http://example.com/page/2/ and show Error 404 - Page Not Found
I put page.php, blog.php in my theme but it still shows same error. So now i wanted to know which page hit the wordpress default blog navigation ?
Thanks.
<?php query_posts('posts_per_page=10');?>. After removing this code, now it works fine. - Arif