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
Post a Comment