본문 바로가기

[R]HTML Uniform Resource Locators


A URL is another word for a web address.

URL은 웹 주소의 또 다른 단어입니다.

A URL can be composed of words (w3schools.com), or an Internet Protocol (IP) address (192.68.20.50).

URL은 단어 (w3schools.com) 또는 인터넷 프로토콜 (IP) 주소 (192.68.20.50)로 구성 될 수 있습니다.

Most people enter the name when surfing, because names are easier to remember than numbers.

서핑을 할 때 대부분의 사람들은 이름을 입력합니다. 이름이 숫자보다 더 기억하기 쉽기 때문입니다.



URL - Uniform Resource Locator

Web browsers request pages from web servers by using a URL.

웹 브라우저는 URL을 사용하여 웹 서버의 페이지를 요청합니다.

A Uniform Resource Locator (URL) is used to address a document (or other data) on the web.

URL (Uniform Resource Locator)은 웹상의 문서 (또는 다른 데이터)를 주소 지정하는 데 사용됩니다.

A web address like https://www.w3schools.com/html/default.asp follows these syntax rules:

https://www.w3schools.com/html/default.asp 와 같은 웹 주소는 다음 구문 규칙을 따릅니다.


1
scheme://prefix.domain:port/path/filename
cs


Explanation:

  • scheme - defines the type of Internet service (most common is http or https)
    scheme - 인터넷 서비스 유형 을 정의합니다 (가장 일반적인 것은 http 또는 https 임).
  • prefix - defines a domain prefix (default for http is www)
    prefix - 도메인 접두사를 정의 합니다 (http의 기본값은 www 임).
  • domain - defines the Internet domain name (like w3schools.com)
    도메인 - 인터넷 도메인 이름을 정의합니다 (예 : w3schools.com).
  • port - defines the port number at the host (default for http is 80)
    port - 호스트에서 포트 번호 를 정의합니다 (http의 기본값은 80입니다 ).
  • path - defines a path at the server (If omitted: the root directory of the site)
    경로 - 서버 의 경로 를 정의 합니다 (생략 된 경우 : 사이트의 루트 디렉토리).
  • filename - defines the name of a document or resource
    filename - 문서 또는 자원의 이름을 정의합니다.



Common URL Schemes

공통 URL 체계


The table below lists some common schemes:

아래 표에는 몇 가지 공통적 인 구성표가 나와 있습니다.


Scheme Short for Used for
http HyperText Transfer Protocol Common web pages. Not encrypted
https Secure HyperText Transfer Protocol Secure web pages. Encrypted
ftp File Transfer Protocol Downloading or uploading files
file   A file on your computer



URL Encoding

URL 인코딩


If a URL contains characters outside the ASCII set, the URL has to be converted.

URL은 ASCII 문자 집합을 사용하여 인터넷을 통해서만 전송할 수 있습니다 . 

URLs can only be sent over the Internet using the ASCII character-set. 

URL에 ASCII 세트 외부의 문자가 포함되어 있으면 URL을 변환해야합니다.

URL encoding converts non-ASCII characters into a format that can be transmitted over the Internet.

URL 인코딩은 비 ASCII 문자를 인터넷을 통해 전송할 수있는 형식으로 변환합니다.

URL encoding replaces non-ASCII characters with a "%" followed by hexadecimal digits.

URL 인코딩은 비 ASCII 문자를 "%"다음에 16 진수로 대체합니다.

URLs cannot contain spaces. URL encoding normally replaces a space with a plus (+) sign, or %20.

URL에는 공백이 포함될 수 없습니다. URL 인코딩은 일반적으로 공백을 더하기 (+) 기호 또는 % 20으로 바꿉니다.



Try It Yourself



If you click "Submit", the browser will URL encode the input before it is sent to the server.

"제출"을 클릭하면 브라우저가 입력을 URL 인코딩하여 서버로 전송합니다.

A page at the server will display the received input.

서버의 페이지에 수신 된 입력이 표시됩니다.

Try some other input and click Submit again.

다른 입력을 시도한 다음 제출을 다시 클릭하십시오.



ASCII Encoding Examples

Your browser will encode input, according to the character-set used in your page.

귀하의 브라우저는 귀하의 페이지에서 사용 된 문자 세트에 따라 입력을 인코딩합니다.

The default character-set in HTML5 is UTF-8.

HTML5의 기본 문자 집합은 UTF-8입니다.


Character From Windows-1252 From UTF-8
%80 %E2%82%AC
£ %A3 %C2%A3
© %A9 %C2%A9
® %AE %C2%AE
À %C0 %C3%80
Á %C1 %C3%81
 %C2 %C3%82
à %C3 %C3%83
Ä %C4 %C3%84
Å %C5 %C3%85


For a complete reference of all URL encodings, visit our URL Encoding Reference.

모든 URL 인코딩의 전체 참조 정보는 URL 인코딩 참조 문서를 참조하십시오 .



출처 : w3schools.com


반응형

'HTML' 카테고리의 다른 글

[R]HTML 양식HTML Forms  (0) 2018.07.02
[R]HTML 과 XHTML(HTML and XHTML)  (0) 2018.07.01
HTML 인코딩 (문자 집합)|(HTML Encoding (Character Sets))  (0) 2018.06.29
HTML 기호(HTML Symbols)  (0) 2018.06.28
HTML 개체(HTML Entities)  (0) 2018.06.27