Solved: redirect to another page using functions.php

Solved it.

add_action('init','redirect_to_change_avatar');

function redirect_to_change_avatar() {
    if ( strpos($_SERVER['REQUEST_URI'], '/profile/change-avatar/') !== false ) {
        wp_redirect('/change-avatar/');
        exit;
    }
}