Skip to content

Instantly share code, notes, and snippets.

@imelgrat
Last active August 23, 2017 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imelgrat/d72312c203955424c6ce to your computer and use it in GitHub Desktop.
Save imelgrat/d72312c203955424c6ce to your computer and use it in GitHub Desktop.
Redirecting WordPress to the homepage. Full article at: http://imelgrat.me/wordpress/dead-links-redirect-avoid-seo-impact/
<?php
// If you want to redirect the browser every time a page can’t be found while avoiding SEO impact, you can open your 404.php file
// in your theme’s folder. If it doesn’t exist, then create a blank .php file. Paste the following code in there:
header("HTTP/1.1 301 Moved Permanently");
header("Location: " . get_bloginfo('url'));
exit();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment