Empty search results return soft 404

Use a web service such as W3C Link Checker to find out the broken links and fix it. Also based on what you described, if it a self-developed theme and caused due to search, make sure you will have a content template that handle the none content situation. You can check your theme’s search.php and … Read more

cancel reply link results in 404 error

Try using this filter to fully modify the link and it’s text: apply_filters( ‘cancel_comment_reply_link’, $formatted_link, $link, $text ); You can modify the proper value depending on your needs. You might also be able to use a preg_replace() to modify the link and add your /blog/ value to it. To remove the link entirely, use: add_filter( … Read more

Custom 404 page for dashboard

To tell your web server to use your custom error files, you’ll need to edit the .htaccess file in the main directory (where main index.php file resides) of your WordPress installation. To ensure the server finds your 404 page, add the following line to your .htaccess file: ErrorDocument 404 /wordpress/index.php?error=404

Homepage Not Found Error [closed]

I’ll try my best to guide you trought some ideas that could solve your problem. 1 – Make sure your .htaccess is set to default If you check the WordPress CODEX, you could compare your default .htaccess to the one you have on your root folder. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – … Read more