how to restrict access to all .txt file in apache except robots.txt?
- by user3162764
I am configuring apache2 on debian and would like to allow only robots.txt to be accessed for searching engines, while other .txt files are restricted, I tried to add the followings to .htaccess but no luck:
<Files robots.txt>
Order Allow,Deny
Allow from All
</Files>
<Files *.txt>
Order Deny,Allow
Deny from All
</Files>
Can anyone help or give me some hints? I am new comer to apache, thanks a lot.