我是 php 和 cakephp 的新手。只是想制作简单的导航菜单。
<li><?php
//pr($this->Html-);
echo $this->Html->link('Entertainment', array(
'controller' => 'UpcommingEntertainments',
'action' => 'index'
));
?></li>
如果我在 www.example.com,它可以正常工作。问题是如果我在 /admin/* 并单击此链接,它会将我带到 www.example.com/admin/Entertainment,我想去 www.wxample.com/Entertainment。我的链接代码应该是什么?