call

add_action(‘template_redirect’, ‘custom_301_redirect’);
function custom_301_redirect() {
// Redirect a specific page ID or slug
if (is_page(‘old-page-slug’)) {
wp_redirect(‘https://crm.techmass.shop/’, 301);
exit();
}
}