@passmarked/seo
Version:
Rules related to checking for any SEO issues on the page given
25 lines (17 loc) • 722 B
Markdown
Your site is using a `robots.txt` file to block all search engines from indexing it entirely.
Ensure that the `robots.txt` file is not blocking this page using an `*` (asterisk).
```
User-agent: *
Disallow: /
User-agent: *
Disallow: /admin
```
Using `robots.txt` to hide parts of your site is ineffective. In fact, it makes it easier for malware bots.
They may simply download your robots.txt file and purposely access the *hidden* resources as it is public.
There is no way to force bots to obey `robots.txt`.
* [All about robots.txt](http://www.robotstxt.org/robotstxt.html)