Redirect all users, except admins
<?php if (current_user_can( 'manage_options' )) { // enjoy } else { header('Location: http://domain.com/coming-soon.html'); exit(); } ?>