functions.php

Alıntı
function redirect_homepage() {
if( ! is_home() && ! is_front_page() )
return;

wp_redirect( 'http://yonlendireceginsayfa.com', 301 );
exit;
}

add_action( 'template_redirect', 'redirect_homepage' );