we have a dedicated server running IIS 7. There is a PHP site (wordpress) running from the server. We want to be able to run an asp.net app on the same server, preferably from within the php site. Any ideas on how to do this?
feedback
|
|
IIS doesn't care at all what kind of "application" you run on it, it doesn't even have any concept of "application" as we humans could mean it (*). It only sees files, and chooses what to do with them based on their extension: simply serve them to the client if they have So, to sum it up: yes, if the PHP and ASP.NET engines are installed and enabled on the server, you can mix (*) Yes, yes, we could talk for hours about application pools and worker processes; this just doesn't change the main point, though. | |||
feedback
|