1

我正在使用UserFrosting来构建我的网站,并想知道我是否能够从登录和注册页面的 url 中删除 /account/?

4

1 回答 1

1

每个路由的 URL 定义在public/index.php. 所以,你会想把它们分开:

$app->get('/login/?', function () use ($app) {    
    // Forward to installation if not complete
    if (!isset($app->site->install_status) || $app->site->install_status == "pending"){
        $app->redirect($app->urlFor('uri_install'));
    }

    $controller = new UF\AccountController($app);
    return $controller->pageLogin();
});


$app->get('/register/?', function () use ($app) {    
    // Forward to installation if not complete
    if (!isset($app->site->install_status) || $app->site->install_status == "pending"){
        $app->redirect($app->urlFor('uri_install'));
    }

    $controller = new UF\AccountController($app);
    return $controller->pageRegister();
});

您还需要对客户端代码 (Javascript) 中的链接和引用进行查找/account/register和替换。/account/login

于 2016-07-26T22:03:21.333 回答