मेरे पास निम्नलिखित .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
मैं आगंतुकों को निम्न फ़ाइल का उपयोग करने से मना कर रहा हूँ:
domain.com/inscription/log.txt
लेकिन मेरे पास जो ऊपर है वह काम नहीं करता है: मैं अभी भी ब्राउज़र से फ़ाइल को दूरस्थ रूप से एक्सेस कर सकता हूं।