Redirecting two Multisite domains to Single site on different host

It may not be the most graceful way of doing this, but you could setup a redirect using PHP, instead of using htaccess.

So you could do something along the lines of, just changing the Google URL to your other websites:

<?php if ( is_home() ) { } else { ?>
    <?php $websiteURL = 'http://www.google.co.uk';
    <?php header('Location: '.$websiteURL); ?>
<?php } ?>

Let me know how you get on…