CAKEPHP - 如何将插件留在网址中

时间:2013-03-26 20:35:27

标签: cakephp plugins cakephp-2.0

我有一个ACL插件,我想能够从这个插件重定向回用户/索引..但我最终得到了不存在的有趣网址。例如/cakephp/admin/acl/users/index

如何进入cakephp/users/index

我查看过HTML帮助器,我很难过。

我也会在cakephp chat room

由于

1 个答案:

答案 0 :(得分:3)

您可以在创建链接时将其设置为“false”来“重置”插件;

e.g;

echo $this->Html->link('go to user overview', array(
    'controller' => 'users',
    'action' => 'index',
    'plugin' => false
);

<强>更新

我的猜测是你正在使用前缀路由插件。要重置插件和前缀,请执行此操作;

echo $this->Html->link('go to user overview', array(
    'controller' => 'users',
    'action' => 'index',
    'plugin' => false,      // resets the plugin
    'admin'  => false,      // resets the admin-prefix
);