Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to deploy 2 separate ASP.NET solutions under one IIS website

Tags:

asp.net

iis

I am facing the issue how to deploy 2 separate ASP.NET solutions in one IIS website. This is how I plan to deploy. In the root website folder, I put one solution's published files. Then, I create another folder in that root folder and put another solution's published files.

When I run from IIS, only the contents from root folder works but those inside a folder doesn't work.

like image 657
SITHU Avatar asked Mar 15 '12 02:03

SITHU


1 Answers

You can use sub folders (add virtual folder) in IIS.

Remember to set the folders "Convert to Web Application" so it works with dependent configuration context.

like image 101
Hoa Tran Avatar answered Sep 18 '22 04:09

Hoa Tran