私は次のようなことを試みます:
$app = new Slim();
$app->get("/home", function() use($app) {
//some query for sub pages
$my_sub_page = 'subpage';
$app->get("/home/" . $my_sub_page, function() use($app) {
//
});
});
しかし、結果www.site.com/home/subpage
は404です...このようなことを行うことは可能ですか?私は何かが恋しいですか?
ありがとう。