wp_redirect
If that’s not working than do that by Jquery method. Add this to footer.php file.
You can add your conditions ..mine example is if user not logged in and category name is solution than redirect to work page…
<?php if ( !is_user_logged_in() && in_category('solutions')){ ?>
<script>
window.location='http://nstplanet.com/nst-work/';
</script>
<php } ?>
You can comment below if you stuck in to make any conditions.