1

我一直在使用 CodeIgniter,我想知道我设置控制器的方式是否不正确。

我正在尝试使用Phil Sturgeon 博客上的方法 2合并我网站的管理部分。

如果我还需要一个控制器来处理前端的产品和用户,我可以将它们命名为 products.php 和 users.php 还是它们会导致冲突?

感谢您的帮助!

文件结构

4

1 回答 1

2

controller您可以在两个不同的文件夹中为双方(后端和前端)使用相同的名称,即

admin/users.php 
front/users.php

但是您也可以使用 aprefix来提高可读性或避免混淆,例如

admin/adm_users.php // read as admin users.php
front/frn_users.php // read as frontend users.php
于 2012-12-11T21:14:51.000 回答