I need search engines to index only one folder. The main page of the site is not necessary to index.
How can I do this?
I need search engines to index only one folder. The main page of the site is not necessary to index.
How can I do this?
It is necessary to prohibit all indexing paths in robots.txt, except for the interesting one.
User-agent: * Disallow: /folder0/ Disallow: /folder1/ ... Disallow: /folder9/
Source: https://ru.stackoverflow.com/questions/99025/
All Articles