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 - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -