/
부터 시작됨 ( /context명
기준으로 타겟경로를 찾음)EX1.
현재: http://localhost:8090/contextA/hello.html
타겟: http://localhost:8090/contextA/world.html
<a href="/contextA/world.html">world로 이동</a>
타겟: http://localhost:8090/contextA/aaa/happy.html
<a href="/contextA/aaa/happy.html">happy로 이동</a>
EX2.
현재: http://localhost:8090/contextA/bbb/hello.html
타겟: http://localhost:8090/contextA/world.html
<a href="/contextA/world.html">world로 이동</a>
.
현재 디렉토리..
부모 디렉토리EX1.
현재: http://localhost:8090/contextA/hello.html
타켓: http://localhost:8090/contextA/world.html
<a href="world.html">world로 이동</a>
타켓: http://localhost:8090/contextA/aaa/happy.html
<a href="aaa/happy.html">happy로 이동</a>
EX2.
현재: http://localhost:8090/contextA/bbb/hello2.html
타겟: http://localhost:8090/contextA/world.html
<a href="../world.html">world로 이동</a>