Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,830
- How-to & Troubleshooting
- 129,807
- Creating & Extending
- 25,867
- Requests & Feedback
- 9,510
- Third Party Plugins
- 9,821
- Showcase
- 3,317
- Ideas
- 1,382
- Miscellaneous
- 9,177
-
On my sites, I simply have a 404 file in my themes which is actually a redirect to where ever I’d like it to go:
<?php
// Permanent redirection
header(“HTTP/1.1 301 Moved Permanently”);
header(“Location: http://yourdomain.com”);
exit();
?>
Simply copy and paste the above into your 404.php file for your theme, and you’re set!