Codeigniter v.3中的子弹,不带控制器和动作

时间:2018-11-13 15:39:14

标签: controller action codeigniter-3 slug

在我的情况下,我制作了一个具有以下结构的子弹表:

+--------------------+------------+--------+
|        Slug        | Controller | Action |
+--------------------+------------+--------+
| a-hello-world      | page       | index  |
| user-profile-dummy | member     | index  |
+--------------------+------------+--------+

我有一个默认的控制器名称Home,现在我想加载这样的动作。 mysite.com/a-hello-world,它将使用page方法和参数indexa-hello-world控制器发送调用。 我已经尝试过

$this->load->library('../controllers/page');
            $this->page->index('a-hello-world');

但是CI v.3不支持它,并且给出了我在Page控制器中使用的其他库的错误

0 个答案:

没有答案