Should the physical path of an IIS Application match the virtual path? -


i understand physical path of application in iis not required live in same location reflected in virtual paths. of course, can done way.

is considered bad practice have overlap? there negative consequences might occur doing this?


here example:

i have website @ c:\inetpub\wwwroot , deploy 2 applications:

virtual paths:
/apps/application1
/apps/application2

physical paths:
c:\inetpub\wwwroot\apps\application1
c:\inetpub\wwwroot\apps\application2


alternative solution might this:

virtual paths:
/apps/application1
/apps/application2

physical paths:
c:\inetpub\application1
c:\inetpub\application2

no, physical path not need match virtual path. it's totally how want set up.


Comments

Popular posts from this blog

javascript - ScrollTo Effect (href to div) -

javascript - ng-class not responding to change in model in Angular? -

javascript - document.registerElement extending HTMLInputElement prototype while using custom tag name to avoid implicit browser style -