don't know how this virtual directory structure was setup on iis6
Posted
by
deostroll
on Super User
See other posts from Super User
or by deostroll
Published on 2010-07-21T07:16:48Z
Indexed on
2011/01/12
6:55 UTC
Read the original article
Hit count: 298
Our development server has a setup as follows:
\\DEVSRVR\WEBSITES\COMMON
+---include
Here is where all css and script files resides. They are required by various web applications
\\DEVSRVR\WEBSITES\TESTING\SAM
+---Backup
¦ +---bin
+---bin
+---help
Here is where an application resides. Suppose there is an aspx page under the folder called SAM, we'd normally issue an http request as follows:
http://testing.apps/sam/default.aspx
We believe that testing.apps virtual name points to \\devsrvr\websites\testing folder.
Suppose there is a css file called menu.css inside common/include. We'd simply have to make the following http call to get it:
http://testing.apps/common/include/menu3.css
This works!!! I don't understand how? There is no such folder called common inside of testing...
© Super User or respective owner