URI? URL? URN? 뜻 구조 문법
목차
1. 단어 뜻
◾ Uniform: 리소스 식별하는 통일된 방식
◾ Resource: 자원, URI로 식별할 수 있는 모든 것(제한 없음)
◾ Identifier: 다른 항목과 구분하는데 필요한 정보 (URI)
◾ Locator: 리소스가 있는 위치를 지정 (URL)
◾ Name: 리소스에 이름을 부여 (URN)
2. 특징
◾ 위치는 변할 수 있지만, 이름은 변하지 않는다.
◾ URN 이름만으로 실제 리소스를 찾을 수 있는 방법이 보편화되지 않아 거의 사용되지 않음
3. 문법
A. 전체 문법
◾ scheme://[userinfo@]host[:port][/path][?query][#fragment]
◾ https://www.google.com:443/search?q=hello&hl=ko
◽ 프로토콜: https
◽ 호스트명: www.google.com
◽ 포트 번호: 443
◽ 패스: /search
◽ 쿼리 파라미터: q=hello&hl=ko
B. scheme
◾ scheme://[userinfo@]host[:port][/path][?query][#fragment]
◾ https://www.google.com:443/search?q=hello&hl=ko
◽ 주로 프로토콜 사용 (프로토콜: 어떤 방식으로 자원에 접근할 것인가 하는 약속 규칙. http, https, ftp 등등)
◽ http는 80 포트, https는 443 포트를 주로 사용, 기본 포트는 생략 가능
◽ https는 http에 보안 추가 (HTTP Secure)
C. userinfo
◾ scheme://[userinfo@]host[:port][/path][?query][#fragment]
◾ https://www.google.com:443/search?q=hello&hl=ko
◽ URL에 사용자 정보를 포함해서 인증
◽ 거의 사용하지 않음
D. host
◾ scheme://[userinfo@]host[:port][/path][?query][#fragment]
◾ https://www.google.com:443/search?q=hello&hl=ko
◽ 호스트명
◽ 도메인명 또는 IP 주소를 직접 사용 가능
E. PORT(포트)
◾ scheme://[userinfo@]host[:port][/path][?query][#fragment]
◾ https://www.google.com:443/search?q=hello&hl=ko
◽ 접속 포트
◽ 일반적으로 생략, 생략 시 http는 80, https는 443
F. path
◾ scheme://[userinfo@]host[:port][/path][?query][#fragment]
◾ https://www.google.com:443/search?q=hello&hl=ko
◽ 리소스 경로(path), 계층적 구조
예) /home/file1.jpg, /members, /items/apple
G. query
◾ scheme://[userinfo@]host[:port][/path][?query][#fragment]
◾ https://www.google.com:443/search?q=hello&hl=ko
◽ key=value 형태
◽ ?로 시작, &로 추가 가능 ?keyA=valueA&keyB=valueB
◽ query parameter, query string 등으로 불림. 웹서버에 제공하는 파라미터, 문자 형태
H. fragment
◾ scheme://[userinfo@]host[:port][/path][?query][#fragment]
◾ https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started.html#getting-started.introducing-spring-boot
◽ html 내부 북마크 등에 사용
◽ 서버에 전송하는 정보 아님
출처: 인프런 '모든 개발자를 위한 HTTP 웹 기본 지식' 강의
'IT > HTTP 웹' 카테고리의 다른 글
[HTTP] 상태 코드 (Status Code) (0) | 2022.06.22 |
---|---|
[HTTP] HTTP 메서드 - GET, POST, PUT, PATCH, DELETE (0) | 2022.06.14 |
[HTTP] HTTP 기본 & 특징 (stateless, connectionless, ...) (0) | 2022.06.10 |
[HTTP] 웹 브라우저 요청 흐름 (0) | 2022.06.09 |
[HTTP] 인터넷 네트워크 (0) | 2022.06.07 |