There are numerous plugins that allow you to create a customized Thank You page: https://wordpress.org/plugins/search/woocommerce+thank+you+page/
If you want to redirect to an individualized order-received page, you can use the following script:
add_action( 'template_redirect', function() {
global $wp;
if ( is_checkout() && !empty( $wp->query_vars['order-received'] ) ) {
wp_redirect( 'https://example.com' );
exit;
}
});