Answers for "redirect 404 to homepage wordpress htaccess"

1

htaccess 404 redirect

ErrorDocument 404 /404.html
Posted by: Guest on October-05-2020
0

wordpress 404.php redirect to home

<?php
// NOTE: create this file name on your child theme: 404.php and add the code:
header("HTTP/1.1 301 Moved Permanently");
header("Location: ".get_bloginfo('url'));
exit();
?>
Posted by: Guest on May-20-2022

Code answers related to "redirect 404 to homepage wordpress htaccess"

Browse Popular Code Answers by Language