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