301 Redirection After Comment

If you have a thank-you-page with same slug in all sites you can do:

add_action('comment_post_redirect', 'redirect_to_thank_page');

function redirect_to_thank_page() {
  return get_bloginfo('url').'/thank-you-page';
}

get_bloginfo('url') detects the subsite you’re currently in