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
Pingback: Quick Tutorial & Examples: Robots.txt Disallow All and Block Search Engine Spiders
Pingback: Use robots.txt disallow directive to shut out spiders and search engine robots
Pingback: Protection of Directory
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?
If you want to block specific bots, try a robots.txt file:
http://www.robotstxt.org/
Of course, this is only for bots that obey the standard. You can’t really block bad bots; they can just lie about their names.
As for your second question, I have no idea what you mean by userid.
Pingback: Anonymous
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
Hmmm.
I just now find this out! And this post is over two-years old.
Still valid with today’s versions of Apache.
Very useful. Thanks it helped me alot
Pingback: .htaccess – Deny access for a specific folder under webroot | Eureka!
Could you also please tell me how to restrict path
allow subdomain.domain.com/addon_domain/folder
deny http://www.domain.com/subdomain/addon_domain/folder
deny http://www.addon_domain.com/folder
Thanks for the help.
To deny public access but allow internal processes use this in the htaccess of the folder you want to restrict access to:
order deny,allow
deny from all
Hi,
I am trying to deny access to a directory. Then check a cookie set with a directory name.
Then use the cookie name and allow access to the directory.
For example cookie name my_dir. if the value in my_dir = “zaks_directory” then
allow access to “zaks_directory”.
Do you know how to do this.
thanks
Thanks alot, very good article
Short and sweet!
Great way to secure any “forbidden” folder!
Thanks a bundle.