Search code examples
admingoogle-search

block google to search your admin section


How to block google to show our website admin section in search result while searching in google?

Thanks.


Solution

  • Your admin section should be password protected so google bot should not be able to progress more than login page.

    If you want to disable even that you can use robots.txt to disallow access to admin section. This is an example:

    User-agent: *
    Disallow: /admin
    

    Check this link to learn about robots.txt: