I have added query_posts() to my index.php file to modify the loop on the posts page:
query_posts( 'cat=-4,-7' );
get_template_part( 'loop', 'index' );
This works correctly, but when I click on "Older Posts" (link to /page/2), the latest posts show up instead of the previous ones. How can I get my pagination to show the correct posts?