我嘗試添加使用CakePHP的一個頁面鏈接:添加網頁鏈接CakePHP中
<?php echo $html->link('Home', '/notes/index');?>
它似乎並沒有輸出正確的鏈接。
我要的是這樣的:
<a href="/cake/cake_startab/notes/index/" alt="Home">Home </a>
我怎樣才能做到這一點?
我嘗試添加使用CakePHP的一個頁面鏈接:添加網頁鏈接CakePHP中
<?php echo $html->link('Home', '/notes/index');?>
它似乎並沒有輸出正確的鏈接。
我要的是這樣的:
<a href="/cake/cake_startab/notes/index/" alt="Home">Home </a>
我怎樣才能做到這一點?
你要使用URL陣列
<?php echo $html->link('Home', array('controller'=>'notes','action'=>'index')); ?>
這會爲你工作。您將無法使用絕對路徑:)
退房的手冊頁,http://api.cakephp.org/class/html-helper#method-HtmlHelperlink
你將需要解釋更多。你在使用內容系統或框架嗎?鏈接函數中的代碼是什麼? – 2010-04-27 11:25:46
這是一個問題? – 2010-04-27 11:26:29
我使用cakephp – rajesh 2010-04-27 11:27:13