Using the template_redirect action hook, you can load a desired template.
add_action( 'template_redirect', function(){ global $post; if( $post->ID == 'page123' ){ wp_redirect( '/your-slug-here-or-php-file' ); die(); } } );