WordPress 404 Sayfasını Yönlendirme
WordPresste 404 sayfa bulunamadı sayfasını ana sayfanıza yönlendirmek için aşağıdaki kod bloğunu wp-content/themes/temanızınklasörü içindeki functions.php içine yerleştirerek gerçekleştirebilirsiniz.
//404 redirect
if( !function_exists('redirect_404_to_homepage') ){
add_action( 'template_redirect', 'redirect_404_to_homepage' );
function redirect_404_to_homepage(){
if(is_404()):
wp_safe_redirect( home_url('/') );
exit;
endif;
}
}