Redirect All 404s to Homepage
Issues a 301 permanent redirect to the homepage for every 404 Not Found response, catching broken inbound links.
PHPby SnipCraft
php
<?php
add_action( 'template_redirect', 'scseed_redirect_404_to_home' );
function scseed_redirect_404_to_home() {
if ( is_404() ) {
wp_safe_redirect( home_url( '/' ), 301 );
exit;
}
}#404#maintenance#redirect#seo