我有近30個php文件,4個子目錄在我的目錄中。我想阻止用戶一些PHP文件和子目錄中直接觀看像http://bhavani.com/hai.php
使用.htaccess阻止訪問文件和子目錄?
我當期的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]
怎麼辦呢?
你可以在php文件開始創建一個簡單的if()語句,如用戶登錄或任何你需要訪問他們,如果沒有的話標題(「404」);出口; – Lucas