Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
andreamarucci
Experienced
Topic Author
Posts: 308
Joined: 01 Mar 2011, 11:13

robots.txt

25 May 2015, 04:00

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?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13999
Joined: 30 Sep 2006, 03:37

Re: robots.txt

25 May 2015, 05:04

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.
 
User avatar
andreamarucci
Experienced
Topic Author
Posts: 308
Joined: 01 Mar 2011, 11:13

Re: robots.txt

25 May 2015, 06:16

Thanks!