function redirect_approve_user_to_login() {
    if (is_page('approve-user')) {
        wp_redirect('https://thepromakers.com/login/');
        exit;
    }
}
add_action('template_redirect', 'redirect_approve_user_to_login');