0

Started on the zend tutorial application. Can't make

zf2-tutorial.localhost/album/

map to
zf2-tutorial.localhost/album/index

But using zf2-tutorial.localhost/album/index calls the index action.

Have already set the default action as 'index'

V.S
  • 314
  • 1
  • 4
  • 14

1 Answers1

0

Change the line:
'route' => '/album[/:action][/:id]'
To:
'route' => '/album/[/:action][/:id]',
in module.config.php of album module

V.S
  • 314
  • 1
  • 4
  • 14