301 Moved Permanently - HTTP | MDN

응답 예시

HTTP/1.1 301 Moved Permanently
Location: <http://www.example.org/index.asp>
  1. 요청 GET http://host:post/dir
    1. /dir 이 디렉토리라면
      1. → 응답 301 http://host:post/dir/ : 2.으로 이어서 진행
    2. /dir 이 파일이라면
      1. → 파일 내용 응답
  2. 요청 GET http://host:post/dir/
    1. config에 index 체크해서 있다면
      1. → 응답 http://host:post/dir/index.html
    2. config에 index 체크해서 없다면
      1. → autoindex가 설정되어있다면, autoindex
      2. → autoindex가 설정되어있지않다면, 404 ?