본문 바로가기

소프트웨어

[html] 상대위치로 현재 디렉토리 url

<html>
    <head>
        <title>Page</title>
    </head>
    <body>
       <a href="./">Folder directory</a> 
    </body>
</html>


상대위치로 프로그램을 할 때 http://domain.com/current/index.html 이런식으로 위치할 때가 있다.

이때 current/ 로 그냥 접속하여 index.html 혹은 index.php로 연결되고 싶을때는 ./를 사용하면 된다.