在CakePHP中添加页面链接

时间:2010-04-27 11:23:50

标签: php cakephp

我正在尝试使用以下方法在CakePHP中添加页面链接:

<?php echo $html->link('Home', '/notes/index');?>

似乎没有输出正确的链接。

我想要的是这样的:

<a href="/cake/cake_startab/notes/index/" alt="Home">Home </a>

我该怎么做?

2 个答案:

答案 0 :(得分:3)

您需要使用网址数组

<?php echo $html->link('Home', array('controller'=>'notes','action'=>'index')); ?>

这对你有用。您将无法使用绝对路径:)

查看手册页http://api.cakephp.org/class/html-helper#method-HtmlHelperlink

答案 1 :(得分:0)

为此页面创建单独的控制器,或在PagesController中为此页面创建路由。