Я использую ZF3, в module.config.php файл в модуле Post, у меня есть один из этих двух маршрутов,
'create-post' => [
'type' => Literal::class,
'options' => [
// Change this to something specific to your module
'route' => '/post/create',
'defaults' => [
'controller' => Controller\PostController::class,
'action' => 'create',
]
],
'may_terminate' => true,
'child_routes' => [
// You can place additional routes that match under the
// route defined above here.
],
],
'post' => [
'type' => Segment::class,
'options' => [
// Change this to something specific to your module
'route' => '/post[/:postId]',
'defaults' => [
'controller' => Controller\PostController::class,
'action' => 'show',
],
'constraints' => array(
'postId' => '\d{4}'
)
],
'may_terminate' => true,
'child_routes' => [
// You can place additional routes that match under the
// route defined above here.
],
]
Теперь, когда я посещаю http://localhost:8080/post/create это работает, но когда я посещаю http://localhost:8080/post/32,, это не работает.Там написано 404 ошибка, страница не найдена.
Любая помощь очень ценится.