Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
yii を使用して、同じコントローラーに保存されているさまざまなアクションを実行しようとしています。
"test" というアクションがあり、URL "localhost/blah/test" を入力してアクセスできます。この URL はコントローラーでメソッド "actiontest()" を呼び出します。 /test/create" は、同じコントローラにあるメソッド "actioncreate()" にアクセスします。
それを達成する方法はありますか?
構成でこのルールをルートで定義します。
'rules' => array( 'localhost/blah/test/create' => 'localhost/blah/create', .... ),