我正在从头开始为房地产网站开发 MVC 引擎。
目前我有这个文件夹结构:
/app
/frontend
/controller
/model
/view
/backend
/controller
/model
/view
/common
/controller
/model
/view
/lib
/log
index.php
backend.php
config.php
bootstrap.php
.htaccess
以这种方式将公共网站和管理网站的 MVC 类分开是个好主意吗?或者最好为所有 MVC 类创建一个文件夹并为创建、更新、删除等操作设置权限?哪个更安全?
谢谢你。