Merhaba,
aşağıdaki kodu temanın içerisindeki functions.php içine ekleyebilirsin.
function redirect_homepage() {
if( ! is_home() && ! is_front_page() )
return;
wp_redirect( 'https://site.com/home', 301 );
exit;
}
add_action( 'template_redirect', 'redirect_homepage' );