スラッシュを含むパラメータでルートを組み立てることは可能ですか?
構成:
'someroute' => array(
'type' => 'Zend\Mvc\Router\Http\Segment',
'options' => array(
'route' => 'someroute/:path',
'defaults' => array(
'controller' => 'Controller',
'action' => 'index'
),
'constraints' => array(
'path' => '(.)+'
)
)
)
コントローラ:
$path = 'some/subdirectory';
$this->url('someroute', array('path' => $path));
結果:
http://host.name/someroute/some%2Fsubdirectory