Controller Help

I’m trying to setup my admin controller so it works like this.

http://something/admin/user/action

That’s admin controller then user controller then the action. I know it’s going to call the admin controller first and I need to point that action to the user controller but I’m not sure how to do that or if i’m even thinking about this right.

Thanks,

John

You should create a module admin with user controller.

You can generate admin module with Gii, and then admin/user controller and all will work immediatly.

Thank you much, works now.