65.9K
CodeProject is changing. Read more.
Home

IIS Physical Path VS Virtual Path

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.50/5 (4 votes)

Sep 26, 2016

CPOL
viewsIcon

48646

In this tip, we will discuss the differences between IIS Physical path & IIS Virtual path.

First of all, let’s get the overview of both.

Physical path - This is the actual path the file is located by IIS.

Virtual path - This is the logical path to access the file which is pointed to from outside of the IIS application folder.

Let’s display this image from Hard-drive ‘E’ using a virtual directory in IIS Default web site.

iis_0

Add Virtual Directory

iis_1

Here, we need to provide an alias for the physical path.

  • Physical Path: E:\Files
  • Virtual Path: http://localhost/Files/
  • File Name: image_60140ec0-ce46-4dbf-a14f-4210eab7f42c.png
  • Full Path: http://localhost/Files/image_60140ec0-ce46-4dbf-a14f-4210eab7f42c.png

iis_3

iis_4

iis_5

Let’s Enable Directory Browsing

iis_6

By default, this is disabled for security reasons.

iis_7

Here, we can see the files in folder that is in E - drive.

iis_8

Click on the file name, it will load the file which is out of IIS application folder.

iis_9

Thanks for reading. Hope this will help!