0

What's the standard or common practice to setup the local path of a website in IIS. Is it c:/inetput/MYWEBSITE or c:/inetpub/wwwroot/MYWEBSITE?

According to this article you can go either way. Should I put my ASP.NET websites in the wwwroot folder?

Thx for your feedback.

Community
  • 1
  • 1
lesponce
  • 39
  • 1
  • 6

1 Answers1

0

There is a wwwroot folder under Intepub. The path may looks like C:\inetpub\wwwroot

But you don't need to put under Intetpub to make your site work. you can put in any other folder also and just map the location to that folder in your website settings under IIS.

enter image description here

It is just personal choice. Both places works. I personally keep it under another folder because sometimes i forget to take backup of my inetpub.

Shyju
  • 214,206
  • 104
  • 411
  • 497
  • Correct. Just wondering what everybody frequently choose to setup the IIS local path on an asp.net website. – lesponce Dec 10 '12 at 02:47