How to rewrite only the route identifier

I am trying to rewrite www.site.com/profile to www.site.com/activity but in the meantime www.site.com/profile/username/edit and other url segments stay as the default. Some of my code:

​// start.php
function profile_route_rewrite_handler($hook, $type, $value, $params)
{
    $value['identifier'] = 'activity';
    return $value;
}

elgg_register_plugin_hook_handler('route:rewrite', 'profile', 'profile_route_rewrite_handler');

but this will rewrite all of the segments for profile page. Any idea? Thanks