Konu
WP Sadece anasayfayı 301 Yönlendirme
16-02-2020, 15:53:57
#5
bondcemil
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' );