skip to Main Content

WordPress Code Snippets


How to Redirect 404 Pages to Homepage in WordPress

A simple guide to redirecting 404 error pages to your homepage in WordPress for a better user experience.

add_action( 'template_redirect', function() {
	if (is_404()) {
    	wp_safe_redirect(home_url());
	    exit();
	}
} );

I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Best WordPress Hosting
Back To Top
Search