0

如果我点击我的链接,我会被重定向到 /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)。

如何摆脱重复的控制器?

4

1 回答 1

0

我为这个问题找到了一些解决方案。我们可以将“Route::get(controller)->uri(params)”替换为“Route::url(controller, params)”。但是我想知道如何做一个相对链接网址。

于 2012-09-09T11:48:41.257 回答