Currently, the robots.txt file is not generated automatically. It can be useful to generate it automatically based on predefined rules with the default being allow all access.
The default intended behavior is for search engines to index all content, hence robots.txt is redundant in the general case.
That is true but many sites like Yandex prefer a robots.txt for SEO.
At first I didn't have the robots.txt file and I noticed Google and Bing coming to our department websites and ONLY look for the robots.txt file! Nothing else! So, I guess now it should be implemented, otherwise you not get indexed!
in static/robots.txt put:
User-agent: *
Disallow:
And watch you access.log files!
Most helpful comment
At first I didn't have the robots.txt file and I noticed Google and Bing coming to our department websites and ONLY look for the robots.txt file! Nothing else! So, I guess now it should be implemented, otherwise you not get indexed!
in static/robots.txt put:
User-agent: *
Disallow:
And watch you access.log files!