Hi Steffen,
A little bit tricky, you can add the redirect function when validating with the hook rwmb_frontend_validate
. Like this
add_filter( 'rwmb_frontend_validate', function( $validate, $config ) {
if ( empty( $_POST['field_id'] ) ) {
wp_redirect( 'https://facebook.com' );
die;
}
return $validate;
}, 10, 2 );