Restricting directory access might be one of the most frequently used .htaccess techniques out there. As a site grows, there always are some areas that you don’t want visitors to look at such as merchandise warehouse where you store digital products for sale.
You want a programmed server-side script to serve the download after confirming payment instead of risking the users downloading them directly from the directory without paying you.
To deny all requests for the restricted directory or folder, prepare a .htaccess text file in that directory and put the following directive in it:
deny from all
That’s it.
Allow and enable access from certain IP
Say you have a permanent IP and you want to administer the site via /admin and protect the directory from the rest of the world once ‘n’ for all, then you will want the following .htaccess directives:
order deny, allow
deny from all
allow from 12.34.56.78
Wherein 12.34.56.78 is your IP.
Or if you have an IP range for an entire country, you can allow visits to your site from that particular country only with this technique.
Or if you are operating the site from LAN you can allow only LAN IP to access certain directories such as /admin:
order deny, allow
deny from all
allow from 192.168.0
Disallow and deny access from certain IP
You get the idea. To allow all visits except from a few identified spam bots, just reverse the deny and allow order like this:
order allow, deny
# 98.76.54.32 is a bad bot here
deny from 98.76.54.32
allow from all
Another blocking method via robots.txt.
You should also read:
- 12 Most Used .htaccess Examples, Tips – Commands & Directives
- .htaccess: Directory Listing – Enable Web Directory Browsing & Indexing
- Use robots.txt Disallow directive to forbid spiders and search engine robots
- Set Expiration or Expiring Time by mod_expires.c on Apache via .htaccess to Reduce Web Page Loading Time
- PHP: open_basedir in php.ini to Restrict and Limit PHP File Accesses to a Certain Directory


Facebook
Twitter
Google Plus
{ 8 comments… read them below or add one }
I know that this article is quite old but I wanted to show my appreciation for your hard work and say that after I’ve been googling for more than half an hour for how to prevent access to files in a directory I’ve found your article which helped me getting there with just one line of code. Thank you very much!
keep up the good work! :)
CT
Hey, really glad it helped!
hi, if i want to redirect a request of a directory to another directory/page, is that possible plz?
Exactly what I was looking for! Did the trick perfectly for a Facebook app. I was developing, where I didn’t want people to view the files from the domain it was hosted on.
So Simple yet powerful. Thanks for this info.
BTW,
Is it possible not be IP specific (for bots). And check them using their some other identity. And then stop them.
Also, is it possible to block some of my users based on their userid?
Very simple but very powerful. Thanks for your shared, it’s very helpful for my job
you should NOT leave a space between “deny” and “allow”
order deny,allow <– good
order deny, allow <– apache error
{ 4 trackbacks }