In CakePHP, is there a way to set admin routing on an URL like this:
...com/admin/articles/
to go to:
View/Admin/Articles/index.ctp
instead of:
View/Articles/admin_index.ctp
My thought is, it would be nice to keep my admin files more separate from my front-end files, since I'd like to re-use my admin over many projects. If this can be done, are their negative side-effects I haven't thought of?