Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I block all access to a directory?

.htaccess

How do I block all access to a directory?

by  Wullie  Posted    (Edited  )
The following explains how to block all access to a directory using htaccess.

To block all access copy the following code into a .htaccess file and put the file in the directory that you wish to protect.

<LIMIT GET POST>
order deny,allow
deny from all
allow from none
</LIMIT>

This means that any request for this directory will be refused.

Hope this helps

Wullie

sales@freshlookdesign.co.uk
www.freshlookdesign.co.uk
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top