$f3->route('GET /index.php/@ctrl',
function($f3){
session_start();
if (!isset($_SESSION['user'])) {
echo $f3->get('REDIR_LINK')['LOGIN'];
}
switch ($f3->get('PARAMS.ctrl')) {
case 'admin':
$f3->set('info', array(
'title' => 'Administrator Page'
)
);
echo View::instance()->render('admin.php');
break;
default:
$f3->set('error404', DIR_ASSET.'images/404.jpeg');
echo View::instance()->render('index.php');
break;
}
}
);
但是当我将路线改为
时$f3->route('GET /index.php/@ctrl/@test ~~~~~
我无法使用@ctrl访问该页面,例如/index.php/admin,但我仍然可以访问/index.php/admin/user
答案 0 :(得分:1)
您的问题的答案可能是user's guide page:
另一件事:Fat-Free认为
GET /brew
与路线GET /brew/@count
分开且不同。
我的建议是试试这个:
$f3->route(
array(
'GET /index.php/@ctrl/@test',
'GET /index.php/@ctrl'
),
function($f3) {
...
});