如果我点击我的链接,我会被重定向到 /podstrony/podstrony/xyz。
我尝试通过以下方式与方法“Route::get()->uri()”建立链接:
$url = Route::get('podstrony')->uri(array(
'title' => 'xyz',
));
我设置如下
$view->body = __('Example text').'<a href="'.$url.'">click</a>';
$this->response->body($view);
bootstrap.php 中的路由看起来像
Route::set('podstrony', 'podstrony(/<title>)')
->defaults(array(
'controller' => 'podstrony',
'action' => 'index',
));
Route::set('default', '(<controller>(/<action>(/<id>)))')
->defaults(array(
'controller' => 'welcome',
'action' => 'index',
));
并且基本 url 仅设置为“/”(我在根目录中有 kohana)。
如何摆脱重复的控制器?