Is it possible to get Wordpress working in a ASP.N

2019-08-28 03:16发布

问题:

I'm looking to provide blog functionalites into my website for our users. I know that it's possible to get Wordpress working in Azure. We are using ASP.NET MVC 3 in Azure. Is it possible to get wordpress running inside a ASP.NET MVC 3 Azure application? If yes, any ideas?

回答1:

WordPress is a content management system (CMS) based on PHP and MySQL.

See wikipedia

The ASP.NET MVC Framework is a web application framework that implements the model-view-controller (MVC) pattern. Based on ASP.NET.

See wikipedia

ASP.NET MVC is what you can USE to build a website/cms etc, but wordpress was built with a different language and technology (PHP)

I would recommend orchard : http://orchardproject.net/ ( http://orchard.codeplex.com)

It's built with asp.net mvc and supports running on Azure.


If you need to RUN Php on windows azure you can, see this : http://www.windowsazure.com/en-us/develop/php/

See how to setup windows azure for PHP