Dana
Dana

Reputation: 11

Adding a Wordpress Blog in a .Net Website

This is my first project and I have been asked to use WordPress to create a blog that is embedded in a .Net Website using SQL Server.

Now my question is as follows

Thank you in advance :)

Upvotes: 1

Views: 175

Answers (1)

Samuel Neff
Samuel Neff

Reputation: 74909

WordPress requires PHP and MySQL. You can run it on the same server as your .NET application, but you cannot run it without PHP and MySQL.

Here's instructions for setting up Wordpress in IIS.

http://www.iis.net/learn/application-frameworks/install-and-configure-php-applications-on-iis/install-wordpress-on-iis

However, I'd personally prefer a sub-domain so you can be more flexible in the future to support having them on the same server, or on different servers, and even have them on separate hosts.

Upvotes: 1

Related Questions