我一直在使用CodeIgniter,我想知道我设置控制器的方式是不正确的。
我正在尝试使用method 2 found on Phil Sturgeon's blog合并我网站的管理部分。
如果我还需要一个控制器来处理我的前端产品和用户,我可以将它们命名为products.php和users.php,还是会引起冲突?
感谢您的帮助!
答案 0 :(得分:2)
您可以在两个不同的文件夹中对两侧(后端和前端)使用相同的controller
名称,即
admin/users.php
front/users.php
但您也可以使用prefix
来提高可读性或避免混淆,例如
admin/adm_users.php // read as admin users.php
front/frn_users.php // read as frontend users.php