kat1330
kat1330

Reputation: 5332

Where is localhost folder

I am trying to find physical path of localhost.

Is it possible to find physical path of localhost when I running my web sit on IIS or Visual Studio?

Thanks

Upvotes: 6

Views: 29860

Answers (3)

donutguy640
donutguy640

Reputation: 377

I found this answer to be helpful. Not if you're using IIS, of course, but I'm not, and I still landed on this question.

Basically, figure out where you installed Apache, like maybe C:\Program Files\Apache24, and look for httpd.conf

Within that file, look for DocumentRoot. That stores the path to your localhost directory.

Upvotes: 1

Rich Goodwin
Rich Goodwin

Reputation: 63

I think by default the path to IIS localhost is

C:\inetpub\wwwroot

Upvotes: 5

Luis Carlos Garcia
Luis Carlos Garcia

Reputation: 1

It usually is htdocs on Windows systems

Upvotes: -2

Related Questions