CakePHP でコントローラーのルーティングを実行しようとしています。
私のコントローラーは UserGames と呼ばれます。デフォルトの CakePHP ソートコード:
<?php echo $this->Paginator->sort('price'); ?>
デフォルトでは、並べ替えリンクは次のようになります。userGames/index/sort:name/direction:asc
次のルーティング ルールを追加しました。
Router::connect('/games', array('controller' => 'UserGames', 'action' => 'index'));
Router::connect('/games/:sort/:direction', array('controller' => 'UserGames'));
これらの並べ替えリンクを使用すると、次のような URL が生成されます。games/name/asc
この方法では並べ替えは機能せず、$this->PassedArgs は空です。私の間違いは何ですか?