我的目录中有近 30 个 php 文件,4 个子目录。我想阻止用户直接查看的一些 php 文件和子目录,例如 http://bhavani.com/hai.php
我的当前htaccess
文件
## Enable Mod Rewrite, this is only required once in each .htaccess file
RewriteEngine On
RewriteBase /
## Test for access to includes directory
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /includes/ .*$ [NC]
## Test that file requested has php extension
RewriteCond %{REQUEST_FILENAME} ^.+\.php$
## Forbid Access
RewriteRule .* - [F,NS,L]
怎么做?