Home Web Front-end Front-end Q&A What is a URL address

What is a URL address

Jan 16, 2019 am 10:45 AM
url url address

URL address, commonly known as web page address, or URL for short, is a string used to completely describe the address of web pages and other resources on the Internet. It is mainly used in various WWW client programs and server programs; a complete URL address Including the protocol part, website address, and file address part.

What is a URL address

#The operating environment of this article: Windows 7 system, Dell G3 computer.

When we visit a web page, we enter the URL we want to visit in the browser. Many people call this string of English letters a URL. In fact, this is incorrect. So what is a URL address? Below, php Chinese website will lead you to understand the URL address.

1: What is a URL address?

URL (Uniform Resource Locator, Uniform Resource Locator) address, commonly known as web page address, referred to as URL, is used to describe on the Internet A string of information resource addresses (Address), like a house number on the Internet. URL address is mainly used in various WWW client programs and server programs

It was originally invented by Tim Berners-Lee as the address of the World Wide Web, and now it has been compiled as an Internet standard by the World Wide Web Consortium RFC 1738

URL is a uniform resource locator, and it is also the address of the WWW page. A complete URL includes the protocol part, the website address, and the file address part.

2: In the Internet, we can use a variety of protocols:

HTTP - HyperText Transfer Protocol (Hypertext Transfer Protocol)

FTP –File Transfer Protocol

Gopher–The Internet Gopher Protocol

File–Local File Transfer Protocol

HTTPS–Secure Sockets Hypertext Transfer Protocol (secure version of http)

When you enter a URL in the address bar, you do not need to enter the protocol part. The browser will automatically add the default HTTP protocol.

The URL part is also often used by everyone, such as www.php.cn, which is a website and a unique network name.

The above is the detailed content of What is a URL address. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Why NameResolutionError(self.host, self, e) from e and how to solve it Why NameResolutionError(self.host, self, e) from e and how to solve it Mar 01, 2024 pm 01:20 PM

The reason for the error is NameResolutionError(self.host,self,e)frome, which is an exception type in the urllib3 library. The reason for this error is that DNS resolution failed, that is, the host name or IP address attempted to be resolved cannot be found. This may be caused by the entered URL address being incorrect or the DNS server being temporarily unavailable. How to solve this error There may be several ways to solve this error: Check whether the entered URL address is correct and make sure it is accessible Make sure the DNS server is available, you can try using the "ping" command on the command line to test whether the DNS server is available Try accessing the website using the IP address instead of the hostname if behind a proxy

PHP function introduction—get_headers(): Get the response header information of the URL PHP function introduction—get_headers(): Get the response header information of the URL Jul 25, 2023 am 09:05 AM

PHP function introduction—get_headers(): Overview of obtaining the response header information of the URL: In PHP development, we often need to obtain the response header information of the web page or remote resource. The PHP function get_headers() can easily obtain the response header information of the target URL and return it in the form of an array. This article will introduce the usage of get_headers() function and provide some related code examples. Usage of get_headers() function: get_header

How to extract URL address using regular expression in Go language How to extract URL address using regular expression in Go language Jul 14, 2023 pm 10:00 PM

How to extract URL addresses using regular expressions in Go language When developing web applications, it is often necessary to extract URL addresses from text. This function can be easily achieved using regular expressions. This article will introduce how to use regular expressions to extract URL addresses in Go language, and attach code examples. Go language has a built-in regular expression library regexp, through which regular matching operations can be easily performed. We can use regular expressions to match the pattern of the URL address and then extract the required URL address.

What is the difference between html and url What is the difference between html and url Mar 06, 2024 pm 03:06 PM

Differences: 1. Different definitions, url is a uniform resource locator, and html is a hypertext markup language; 2. There can be many urls in an html, but only one html page can exist in a url; 3. html refers to is a web page, and url refers to the website address.

How to get your Steam ID in a few steps? How to get your Steam ID in a few steps? May 08, 2023 pm 11:43 PM

Nowadays, many Windows users who love games have entered the Steam client and can search, download and play any good games. However, many users' profiles may have the exact same name, making it difficult to find a profile or even link a Steam profile to other third-party accounts or join Steam forums to share content. The profile is assigned a unique 17-digit id, which remains the same and cannot be changed by the user at any time, whereas the username or custom URL can. Regardless, some users don't know their Steamid, and it's important to know this. If you don't know how to find your account's Steamid, don't panic. In this article

How to obtain url address How to obtain url address Jul 19, 2023 am 09:37 AM

Methods to obtain the URL address: 1. Get it in the browser address bar; 2. Click the link to get it; 3. Click the link to get it; 4. Get it from the web page source code; 5. Use developer tools to get it.

How to use URL encoding and decoding in Java How to use URL encoding and decoding in Java May 08, 2023 pm 05:46 PM

Use url to encode and decode the class java.net.URLDecoder.decode(url, decoding format) decoder.decoding method for encoding and decoding. Convert into an ordinary string, URLEncoder.decode(url, encoding format) turns the ordinary string into a string in the specified format packagecom.zixue.springbootmybatis.test;importjava.io.UnsupportedEncodingException;importjava.net.URLDecoder;importjava.net. URLEncoder

How to add URL prefix to SpringBoot multiple controllers How to add URL prefix to SpringBoot multiple controllers May 12, 2023 pm 06:37 PM

Preface In some cases, the prefixes in the service controller are consistent. For example, the prefix of all URLs is /context-path/api/v1, and a unified prefix needs to be added to some URLs. The conceivable solution is to modify the context-path of the service and add api/v1 to the context-path. Modifying the global prefix can solve the above problem, but there are disadvantages. If the URL has multiple prefixes, for example, some URLs require prefixes. If it is api/v2, it cannot be distinguished. If you do not want to add api/v1 to some static resources in the service, it cannot be distinguished. The following uses custom annotations to uniformly add certain URL prefixes. one,

See all articles