How to create User friendly URL in WordPress?

There is a simple solution for this. Add this code to your theme’s functions.php. After that you need to re-save your permalinks from Settings->Permalinks in WordPress dashboard.

function remove_author_base() {
/**
 * Remove Author base from Wp Links
 * Serkan Algur
 */
    global $wp_rewrite;
    $wp_rewrite->author_base="";
}
add_action('init', 'remove_author_base', 1);

I tested this code on my localhost (apache server with htaccess enabled). Please comment if code works or not.