In this tutorial we learn how to redirect shop page to specific page
// Redirect WooCommerce Shop URL
function wc_shop_url_redirect() {
if( is_shop() ){
wp_redirect( home_url( '/tutorials/' ) ); // Assign custom internal page here
exit();
}
}
add_action( 'template_redirect', 'wc_shop_url_redirect' )