Reputation: 499
I have Orchard CMS and I want to integrate my MVC site with it. Can anybody tell me how to do this?
Upvotes: 38
Views: 11753
Reputation: 13366
It depends on how complex your MVC app is, but in most cases it is straighforward. The easiest way is to wrap your existing site into Orchard module. Writing a module is described here. These are the necessary steps:
Remember though that Orchard is based on ASP.NET MVC 4 and uses Razor view engine. If you use some other view engine, you have to specify it appropriately in the web.config file.
Upvotes: 93