Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to restrict access to certain web directories in my website using .htaccess file. I know one way using order allow,deny deny from all But it restricts only the first directory. It doesn't work for the remaining ones. Please help

share|improve this question
@jimy, What will giving permisison of 755 do in OP's case – Starx Apr 18 '11 at 10:57
@jimy: Its already 755 – Sanks Raut Apr 18 '11 at 11:01
@jimy: Thanks jimy. It works. You should have posted this as an answer. I would have closed it – Sanks Raut Apr 18 '11 at 11:07
What i can't figure out is, Why would this question belong on serverfault.com? It is not that off topic. – Starx Apr 18 '11 at 11:07
@sanks dont try that one it will also not give access while page rendering try out my answer – jimy Apr 18 '11 at 11:08
show 1 more comment

2 Answers

up vote 0 down vote accepted

Options -Indexes add this line at the top of the .htaccess file

share|improve this answer
What's that? I didn't understand. How can this help? – Sanks Raut Apr 18 '11 at 11:13
this will not give access to any other file rather than index.php, home.php etc – jimy Apr 18 '11 at 11:14
Can you explain in short about this? Please – Sanks Raut Apr 18 '11 at 11:15

You are wrong, using deny from all also applies to subdirectories.

i.e. unless there is another .htaccess inside the other sub directories that allows the access

share|improve this answer
I didn't understand. can you elaborate – Sanks Raut Apr 18 '11 at 11:01
If you allow access to a sub directory by placing another .htaccess file inside it, on that case only the deny from all placed at the parent directory does not work. Or else it will restrict access to every directory found. – Starx Apr 18 '11 at 11:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.