class AppController extends Controller {
public $components = array(
'Session',
'Auth'=>array(
'loginRedirect'=>array('controller'=>'users', 'action'=>'view'),
'logoutRedirect'=>array('controller'=>'users', 'action'=>'login'),
'authError'=>"You can't access that page",
'authorize'=>array('Controller')
)
);
ビューの代わりにインデックスを使用すると機能しますが、ビューを使用するとエラーが発生します。
invalid user
Error: The requested address '/skill_application/users/view' was not found on this server.
ユーザーがログインすると、ユーザービューにリダイレクトされます。ビューにIDを与えるにはどうすればよいですか?