Easy 404 redirect

Put this code in your 404.php template and every page Not Found will be redirected to your index.php:

<?php
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: ".get_bloginfo('url'));
    exit();
?>

Leave a Reply