Some routes are defined as constants in UserController ``` const ROUTE_CHANGEPASSWD = 'zfcuser/changepassword'; const ROUTE_LOGIN = 'zfcuser/login'; const ROUTE_REGISTER = 'zfcuser/register'; const ROUTE_CHANGEEMAIL = 'zfcuser/changeemail'; ``` In order to change these routes, we should extend UserController. It should be configurable with the moduleOptions. I have overwrited routes to use dashboard/user dashboard/user/login [...] using UserController and action from ZfcUser. If I go to /dashboard/user, and if I'm not logged, UserController redirect me to ROUTE_LOGIN (/user/login) instead of /dashboard/user/login IMO, Configurable options is easier than extend UserController What is your opinion about this ?