我是 CakePHP 的新手;
在我点击每个菜单后,URL地址栏总是被附加;
我已经定义了我的路线如下:
Router::connect('/brand/*', array('controller' => 'phones', 'action' => 'phonebybrand'));
这是我的菜单:
<?php
foreach ($phonebrands as $phonebrand):
echo '<li><a href="brand/{$phonebrand['Phonebrand']['id']}">{$phonebrand['Phonebrand']['brandname']}</a></li>';
endforeach;
?>
我试图点击我的菜单几次;我发现总是附加的 URL;
第一次:localhost/cakephp-2.3.2/brand/43
第二次:localhost/cakephp-2.3.2/brand/brand/43
第三次:localhost/cakephp-2.3.2/brand/brand/brand/43
请帮助我,为什么它总是附加网址?
感谢。