我刚刚创建了一个名为ContactForm
现在在默认布局上有以下链接:
$this->Html->link('Home', array('controller' => 'posts', 'action' => 'index','admin' => false));
$this->Html->link('About', array('controller' => 'pages', 'action' => 'display', 'about', 'admin' => false))
该插件工作正常。我的问题是,当我要去的时候/contact_form/contacts/add
,页面上的所有链接都会附加插件 url,这会产生以下链接:
/posts/index
进/contact_form/posts/index
/pages/about
进/contact_form/pages/about
我知道您可以添加'plugin' => null
到主应用程序上的所有链接,但是有没有办法从插件本身解决问题?