我正在使用Silex框架并需要调用
$app->get('/users/')
内
$app->get('/user/create/{username}'
创建新用户后。我该怎么办?
以下是我的示例代码:
$app->get('/users/', function(Application $app) {
....
});
$app->get('/user/create/{username}', function(Application $app, $username) {
....
**redirect to $app->get('/users/')**
});
答案 0 :(得分:0)
得到了答案!
return $app->redirect('/users/');