Tengo el siguiente archivo .htaccess:
RewriteEngine On
RewriteBase /
# Protect the htaccess file
<Files .htaccess>
Order Allow,Deny
Deny from all
</Files>
# Protect log.txt
<Files ./inscription/log.txt>
Order Allow,Deny
Deny from all
</Files>
# Disable directory browsing
Options All -Indexes
Estoy intentando prohibir que los visitantes accedan al siguiente archivo:
domain.com/inscription/log.txt
pero lo que tengo arriba no funciona: todavía puedo acceder al archivo desde el navegador de forma remota.