求教大虾们下在http网址中 ../ 与 ./ 是什么意思

用./的例子
http://localhost:63622/examples/./ccs/html/CcsDealInput.html
http://localhost:63622/examples/ccs/html/CcsDealInput.html
这两个地址相同;
用../的例子
http://localhost:63622/examples/../ccs/html/CcsDealInput.html
http://localhost:63622/ccs/html/CcsDealInput.html
这两个地址相同;
虽然知道 ../ 与 ./ 用法效果,但不知道他们是什么意思,求大神讲一下这二者是什么意思,最好给一个这方面的知识链接,谢谢大虾们了

与目录路径里的..及.一个意思:上级目录、当前目录
但是,有些web server是可以设置不支持它们的,尤其是..

../表示上一级目录,./表示当前目录