Le code

/**
SEO automatic redirections
* Redirect author pagination
* © Daniel Roch
*/
function seomix_seo_redirect_paginate () {
    global $paged, $page;
    // Si je suis une sous-page d’une page auteur
    if ( is_author () && ( $paged >= 2 || $page >= 2 ) ) {
        // On redirige vers la page de l’auteur
        global $wp_rewrite;
        $url = home_url().'/'.$wp_rewrite->author_base.'/'.$GLOBALS['author_name'].'/';
        wp_redirect( $url , '301' );
        die();
    }
}
add_action( 'template_redirect', 'seomix_seo_redirect_paginate' );