As we know, when we create an MVC application, it creates its own typical structure which is known as convention over configuration and its a good practice . It configure views, controller and model separately .
My concern is, can i architect(design) it like :

If I do that, My viewengine will search views inside view not inside subfolders and there are so many things like routing will get changed.. and so on..
Actually I dont want to construct my view,controller or model in a typical way, I want to put my view separately according to my domain, not according to controller like MVC does. However in case of controller we can use any folder structure . I am specific about model,views and routing should not be affected as well.
And it is all about "Convention over My own Configuration".
Can someone please explain, how to get it done or any other alternatives.
Thanx Anupam.
folder structurethanarchitecture? How?