Redirect preview single post link to a page

Asking this question gave me an idea. make the single-[posttype].php and inside it just put

<?php wp_redirect(get_page_uri(get_page_by_path('your-page-slug')); ?>

also works with get_page_by_title()

This will direct the preview post and view post link on the admin create post page to the page you want.