I have the following user roles in my application:
Admin Client Contractor
They are controlled by ACL for each function / page.
I want to create a new one called Client_site. But I want this new role to route through to the Client prefixed pages. e.g. /client/:controller/:action
Basically I want it to use all the same pages as the client role, but just have read only access to them. Which I have set up in the ACL tables.
How would I set this up in the routing?
Also is there anything else I will need to amend to get this working?