create user’s view profile link with username

Please find out following answer:

  add_action('init','change_all_permalinks');
  function change_all_permalinks()
  {
      global $wp_rewrite;
      $wp_rewrite->author_base=""; 
      $wp_rewrite->author_structure="/%author%";
   }

After add this code in functions.php you need to go permalink settings and press on save changes button,without change anything in permalinks and then check frontend url ‘www.yoursite/admin/’.