URLを正しく機能させるのに少し問題があります。
URLは次のようになります:/ messages / from / 1 / page / 5
私のルートはこんな感じ
$router->addRoute('messages-from',
new Zend_Controller_Router_Route('messages/from/:user_id/:page', array(
'controller' => 'messages',
'action' => 'from',
'page' => 1
))
);
これは問題なく動作します。しかし、URLには/page/の部分がありません。追加した場合:
'messages/from/:user_id/page/:page'
その後、それは壊れ、user_idパラメータは常にnullになります。
どうすればこれを修正できますか?
ありがとう!