1
在CakePHP應用程序和Html-Helper中使用路由的URL參數時,隱藏/index
動作的正確方法是什麼?CakePHP:使用路由隱藏/ index操作
我想同時使用HTML幫助
echo $this->Html->link('Books', array(
'controller'=>'books', 'action'=>'index', 2
));
試圖在我的routes.php
Router::connect('/books/:id', array('controller' => 'books'), array(
'id' => '[0-9]+',
'pass' => array('id')
));
輸出以下才能夠顯示的URL像/books/2
是:http://www.example.com/books/index/2
誠徵: http://www.example.com/books/2
你嘗試過加入陣列以「Action」 =>「指數」? – 2012-08-08 17:50:04
謝謝你的提示,我試了一下 - 只是忘了在這裏提到它。 – 2012-08-09 07:27:07