Hi...
I want to know the use of ~/, .// and ../ when making a website and what is the difference in all?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jaganathan BantheswaranPosted Jul 22, 2011, 8:46 AM
To move backward,
Starting with "/" returns to the root directory and starts there
Starting with "../" moves one directory backwards and starts there
Starting with "../../" moves two directories backwards and starts there (and so on...)
To move forward,
just start with the first subdirectory and keep moving forward
Gurjeet SinghPosted Jul 26, 2011, 12:20 AM
To solve my confusion.