Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Please someone explain to me by example what is a virtual directory and why do we need it?

share|improve this question
You could have searched google for this........ – rahul Jun 16 '09 at 12:01
2  
If only StackOverflow searched google as well as its own question DB when suggesting prior questions... – skaffman Jun 16 '09 at 12:06
@skaffman: +1 Nice idea - one for uservoice I think. – Simon P Stevens Jun 16 '09 at 12:13
3  
@phoenix: Stack Overflow is for everyone. Any programming question is allowed. Find another outlet for your RTFM spam. – roosteronacid Jun 16 '09 at 12:39

2 Answers

up vote 2 down vote accepted

A virtual directory is a friendly name, or alias, either for a physical directory on your server hard drive that does not reside in the home directory.
Because an alias is usually shorter than the path of the physical directory, it is more convenient for users to type.

Taken from here

share|improve this answer
1  
The primary benefit was abstraction enabling reuse and complex hosting structures, I think the convenience aspect was tertiary or less :) – annakata Jun 16 '09 at 12:04

In essence, in IIS, it's like a shortcut to another directory on your computer while seeming like it is a subdirectory of the current directory.

I.E.

www.example.com/bob/phil

bob may be a subdirectory of the root, while phil is a directory elsewhere on the computer, not necessarily in bob

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.