WordPress » Assistance Changing Author Permalink / URL
http://wordpress.org/support/topic/assistance-changing-author-permalink-url
function change_author_permalinks() {
global $wp_rewrite;
// Change the value of the author permalink base to whatever you want here
$wp_rewrite->author_base = 'artist';
$wp_rewrite->flush_rules(); }
add_action(‘init’,’change_author_permalinks’);