Why does Google Webmaster Tools say my whole site is blocked by robots.txt when I have no robots.txt?

Similar problem occurred to me, and I got the solution following these: Step 1: Take a backup of your .htaccess file and then remove it (Don’t worry, on next refresh WordPress will create one for you) Step 2: If there’s no robots.txt exists, create one with blank page Step 3: Resubmit the sitemap to google … Read more

Stuck on my server root folder, robots.txt file not deleting

WordPress generate a dynamic robots.txt which does not physically exists. To remove/disable it you have two options: Option 1: Remove do_robots action in your theme functions.php or plugin remove_action(‘do_robots’, ‘do_robots’); The action do_robots is still available to be added again by other plugins. Option 2: Create a real robots.txt file, put it the root folder … Read more