Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
600 views
in Technique[技术] by (71.8m points)

iis - Should I put my ASP.NET websites in the wwwroot folder?

I have a number of websites that run under IIS on a single machine.

Should I put these websites inside of the C:inetpubwwwroot folder or inside the C:inetpub folder?

E.g.

  • C:inetpubwwwrootWebsite1
  • C:inetpubwwwrootWebsite2

or

  • C:inetpubWebsite1
  • C:inetpubWebsite2

Are there any pros/cons for either or another recommended location (I only have a C drive on this machine)?

I am not sure whether there is a "correct" answer to this, but want to follow best practice if there is one.

Many thanks, Jonathan

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Go the second route.

wwwroot is simply there as the container for the default website for the server. If you delete the default website from within IIS, then you can safely remove this directory. Regardless, your sites have nothing to do with the default, so they should be in their own folders under inetpub.

That said, we sometimes have multiple "types" of sites on the same server. For example DEV and QA. In this case I would structure it as:

c:inetpubdevsite1
c:inetpubdevsite2

c:inetpubqasite1
c:inetpubqasite2


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...