Page 1 of 1

robots.txt

Posted: 25 May 2015, 04:00
by andreamarucci
I hope this is the last message. I've a robots.txt file but if I try to access it
Code
Forbidden

You don't have permission to access /robots.txt on this server.
so google cannot check and read the file

http://gallery.kog.it/robots.txt

Maybe something wrong in htaccess?

Re: robots.txt

Posted: 25 May 2015, 05:04
by mjau-mjau
andreamarucci wrote:Maybe something wrong in htaccess?
Hmm yes you are right ... Open .htaccess in a text editor, and change on line 61:
Code
<Files ~ "\.(txt|yml)$">
to:
Code
<Files ~ "\.(yml)$">
No point in blocking txt files. This fix will be included with next release. Thanks for reporting.

Re: robots.txt

Posted: 25 May 2015, 06:16
by andreamarucci
Thanks!