Turn off auto 301 on archive pages? [closed]

This is known bug.

You can read something about this here:

michaelcurry there wrote a solution.

Quick Fix – Put this into your functions file.

add_action('wp_loaded', 'remove_actions');

function remove_actions()
{
    remove_action( 'wp', array( $GLOBALS['wpseo_front'], 'pagination_overflow_redirect' ), 99 );
}