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

I have a webpage which uses php and I am using mod-rewrite to make simpler ulrs like

RewriteRule ^login$ /php/pages/login.php [L]

What I want to do is to prevent the direct access to the directory /php But if I use something like

RewriteRule ^php - [R=404,L,NC]

at the end of the file even the rewritten ulrs are prevent since the .htaccess is used in the subdirectory again with the rewritten url. If possible I would not like to place another .htaccess to each directory. I also tried RewiteCond with REQUEST_URI w/o any luck.

plz hlp

kthxbye

share|improve this question
found [END] flag but this isnt supported in apache2 – bitluni Nov 22 '12 at 17:36
Have this now at the end of my file: RewriteCond %{THE_REQUEST} /php/ RewriteRule . - [R=404,L] Works but it's risky – bitluni Nov 22 '12 at 18:23

1 Answer

up vote 0 down vote accepted

at the end of the .htaccess:

RewriteCond %{REQUEST_URI} ^/php/    
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule . - [R=404,L]
share|improve this answer

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.