这是我当前的“.htaccess”文件(放在我的文档根目录上):
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
我的项目结构是:
app/ <---- here i have all my php code
public/ <----- css/js/images
.htaccess
index.php <---- starting point
我希望拒绝直接访问我的应用程序文件,例如“/app/controller/controllerName.php”(我将使用路由器来处理我的所有请求......),我该如何实现?不接触公用文件夹树?