PDA

View Full Version : Why http is required In A Url ?



warrantyau
03-09-2020, 04:33 AM
Why http is required In A Url ?

Saravanan28
03-09-2020, 06:18 AM
HTTP is the protocol used to transfer data over the web. ... If the URL is valid and the connection is granted, the server will send your browser the webpage and related files.

swaroop
03-09-2020, 07:46 AM
Technically, the http:// (or https:// if the site is secured) is required but the browser will add it for you. ... Its original use was to indicate that the address leads to a public website. These days, any properly configured website should work with or without the www.

Mecanertech
03-09-2020, 07:48 AM
Stands for "Hypertext Transfer Protocol." HTTP is the protocol used to transfer data over the web. ... If the URL is valid and the connection is granted, the server will send your browser the webpage and related files.

jayam
03-09-2020, 09:12 AM
Stands for "Hypertext Transfer Protocol." HTTP is the protocol used to transfer data over the web. ... If the URL is valid and the connection is granted, the server will send your browser the webpage and related files. Some common HTTP status codes include: 200 - successful request (the webpage exists)

GeethaN
03-12-2020, 09:12 AM
HTTP defines how messages are formatted and transmitted, and what actions Web servers and browsers should take in response to various commands. For example, when you enter a URL in your browser, this actually sends an HTTP command to the Web server directing it to fetch and transmit the requested Web page.

davidweb09
03-12-2020, 04:04 PM
Because HTTP help to forward the server data online to domain address. https://smpaving.com/

yuva12
03-13-2020, 10:14 AM
Stands for "Hypertext Transfer Protocol." HTTP is the protocol used to transfer data over the web. ... If the URL is valid and the connection is granted, the server will send your browser the webpage and related files. Some common HTTP status codes include: 200 - successful request (the webpage exists)

amarathomas
03-26-2020, 02:16 AM
Technically, the http:// (or https:// if the site is secured) is required but the browser will add it for you. ... Its original use was to indicate that the address leads to a public website.

ritesh3592
03-26-2020, 08:21 AM
Enough answers are given. I think @admin should close the thread now!!

shimar789
03-26-2020, 11:02 AM
Technically, the http:// (or https:// if the site is secured) is required but the browser will add it for you. ... Its original use was to indicate that the address leads to a public website. These days, any properly configured website should work with or without the www.

godwin
03-27-2020, 06:56 AM
HTTP defines how messages are formatted and transmitted, and what actions Web servers and browsers should take in response to various commands. For example, when you enter a URL in your browser, this actually sends an HTTP command to the Web server directing it to fetch and transmit the requested Web page.

godwin
04-09-2020, 01:04 AM
HTTP stands for Hypertext Transfer Protocol. It is a protocol which are a set of rules for some activity. Each protocol occupies a port. For ex: HTTP occupies port 80, HTTPS occupies port 443, FTP occupies port 21 and so on.

The reason we use HTTP in front of the URL is to tell the browser about which port we’re looking to connect to. Since its difficult to remember each port, we make it human rememberable, some sort of convention we use in most of the places of our DNS system.

How the DNS system works would give you a good idea about the use of HTTP in front of each URL.

Whenever we enter a URL in a browser, the browser puts up a dot at the end and reverses the entire URL and send it to the local ISP. Such that: Google gets transformed to .com.google.www://https

warrantyau
04-10-2020, 04:46 AM
Its original use was to indicate that the address leads to a public website. Any properly configured website should work with or without the www.