A WordPress admin plugin to Customize and secure your WordPress dashboard
Find Your Broken Links
The log of collects the addresses that end in "not found", how often they are hit and where the visitor came from. That is where broken links on your own site show up, along with pages moved without a redirect and automated scans.The custom page, with a search box and a link home, gives lost visitors a way out.
The log of missing addresses
Every request that ends in a 404 is counted. The log doesn't list individual visits but addresses, each with a hit count, the last time it was requested and the page the visitor came from.
noindex, follow, so search engines drop the missing address instead of indexing a duplicate.The preview button opens a non-existent address in a new tab, so it genuinely goes through the 404 path. The response is sent with status 200 on purpose: many hosts replace the body of any 404 response (nginx with proxy_intercept_errors, Apache with ErrorDocument), and comparing the two tells you immediately which side the problem is on.
If the WordPress 404 monitor preview shows a server error instead of your page: the 404 is being answered by your host or CDN before WordPress runs, and no plugin can change that. Messages like "404, the file you requested does not exist" don't come from WordPress — look for an ErrorDocument rule in .htaccess, or a custom error page in your hosting panel.
The way out: define('ADMIN3WEBBLUE_DISABLE_404', true); in wp-config.php switches the module off from outside the dashboard.