How do I find my URL number

@APLUS77

Welcome to HP Forums,  

This is a great place to get support, find answers and tips,
Thank you for posting your query, I'll be more than glad to help you out 🙂

I see that you're trying to figure out URL IP number,
Don't worry as I'll be glad to help, however, to provide an accurate resolution, I need a few more details:

  • What is the product number of your device? Use this link to find it: http://support.hp.com/us-en/document/c03754824 (Ensure you do not share any of your personal information such as serial, phone number, email ID, etc...).
  • What is the operating system?
  • Are you experiencing wireless connective issue?  What seems to be the issue?

Keep me posted for further assistance.

ECHO_LAKE
I am an HP Employee

Updated: 12/05/2021 by

Also known as an internet address or web address, a URL (Uniform Resource Locator) is a URI and standardized naming convention for addressing documents accessible over the Internet and Intranet. The URL makes it possible for a computer to locate and open a web page on a different computer on the Internet. An example of a URL is https://www.computerhope.com, the URL for the Computer Hope website.

Overview of a URL

Below is additional information about each section of the HTTP URL for this page.

How do I find my URL number

http:// or https://

The "HTTP" stands for Hypertext Transfer Protocol. It lets the browser know which protocol it's going to use to access the information specified in the domain. An "HTTPS" protocol is short for "Hypertext Transfer Protocol Secure" and indicates that information transmitted over HTTP is encrypted and secure. After the HTTP or HTTPS is the colon ( : ) and two forward slashes ( // ) separate the protocol from the remainder of the URL.

Tip

A URL is not explicit to HTTP or HTTPS addresses; FTP, TFTP, Telnet, and other addresses are also considered URLs and may not follow the same syntax as our example.

www.

Next, "www" stands for World Wide Web and is used to distinguish the content. This portion of the URL is not required and can be left out many times. For example, typing "http://computerhope.com" would still get you to the Computer Hope website. The address portion can also be substituted for an important sub-page known as a subdomain.

computerhope.com

Next, "computerhope.com" is the domain name for the website. The last portion of the domain is known as the domain suffix or TLD. It is used to identify the type or location of the website. For example, ".com" is short for commercial, ".org" is short for an organization, and ".co.uk" is the United Kingdom. There are several domain suffixes available. To get a domain, you would register the name through a domain registrar.

/jargon/u/

Next, "jargon" and "u" are the directories where the web page is on the server. In this example, the web page is two directories deep. To find the file on the server, it would be in the /public_html/jargon/u directory. The public_html directory is the default directory containing the HTML files with most servers.

url.htm

Finally, url.htm is the actual web page on the domain you're viewing. The trailing .htm is the file extension of the web page that indicates the file is an HTML file. Other common file extensions on the Internet include .html, .php, .asp, .cgi, .xml, .jpg, and .gif. Each of these file extensions performs a different function, like all the different types of files on your computer.

  • See our index.htm definition for additional information about this important file.

Tip

As you may have noticed, the protocol, domain, directories, and files are separated by forward slashes ( / ).

Where is the URL located?

A URL is usually located at the top of the browser window in the address bar or omnibox. On desktop computers and laptops, the URL is always visible unless your browser is being displayed in fullscreen. In most smartphone and tablet browsers, the address bar containing the URL disappears as you scroll down and only show the domain when visible. When the address bar is not visible, scroll up the page. If only the domain is shown, tapping on the address bar shows the full address.

Tip

Most video-sharing pages, such as YouTube, also have sharing links below the video or in the video. Using these sharing links is another way to get the URL of the video.

How to open a URL

You can open a URL by clicking a hyperlink. For example, clicking "hyperlink" in this paragraph opens a page describing hyperlinks.

If a URL is in printed material (e.g., e-mail or magazine) where it's not a hyperlink, you can open the page by typing the URL in the browser address bar. If the URL is in an e-mail, it can also be copied and pasted to the browser address bar.

  • How to copy and paste text to a document or another program.

Tip

Some printed material may also have a QR code to scan to open a web page with your smartphone.

How can I create my own URL?

Many social networking sites like Instagram, or shopping platforms like Etsy, allow you to have custom directories that link to your page. For example, the Computer Hope Facebook profile is at "facebook.com/computerhope". However, this URL is not a full URL but a specific section dedicated to your user profile.

To create a fully unique URL, such as "computerhope.com", you need to obtain a custom domain from a domain name registrar. These companies allow you to purchase domain names, which can be attached to your website(s) or redirected to any web page you choose.

You are usually required to renew your domain on an annual basis. Domains are priced based on their marketability and historical use. Domain suffixes like .com, .net, or .org also affect the price. Once purchased, domain names can be transferred between registrars or linked to other websites while you own the domain.

Popular domain name registrars include:

  • Google Domains
  • GoDaddy
  • Namecheap
  • CloudFlare

Website builders like Wix, Weebly, and Squarespace also allow you to purchase custom domain names automatically tied to your custom website.

What characters are not allowed in a URL?

Most people realize that spaces are not allowed in a URL. However, it is also important to realize, as documented in RFC 1738, the URL string can only contain alphanumeric characters and the !$-_+*'(), characters. Any other characters that are needed in the URL must be encoded.

Understanding more complex URLs and parameters

When a URL points to a script that performs additional functions, additional information (parameters) is added to the end of the URL. For example, a search engine URL pointing to a search results page includes a parameter with the search query words.

Below is an example URL that points to the Computer Hope search page, with the search query parameter of "example search".

https://www.computerhope.com/cgi-bin/search.cgi?q=example%20search

In this URL, the script file being pointed to is search.cgi in the cgi-bin directory. Because this file ends with .cgi, it is assumed to be a Perl script.

After the script file name is a ? (question mark). The question mark in a URL separates the URL from all the parameters or variables sent to the script. In the example above, the parameter is q=example%20search. The "q" is a variable name, and the "example%20search" is the value for that variable. Because no spaces are allowed in a URL, the space is encoded as %20. In many scripts, a + (plus) is also used to represent a space.

In our example, the script would use it as it is executed because there is a variable. Scripts are also not limited to only one variable. If the script needs multiple variables, each variable can be separated with a & (ampersand), as shown in the example below.

https://www.computerhope.com/cgi-bin/search.cgi?q=example%20search&example=test

In the example above, there are two different variables. The "q" variable equals "example search", and the "example" variable equals "test". If the script looked for an example variable, it could be processed and perform an additional feature.

Is an IP address the same as a URL or web address?

No. An IP address is a unique number assigned to each device on a network. A domain name is assigned a unique IP address on the World Wide Web. When typed (e.g., computerhope.com), DNS translates the domain name into an IP address that routers use to find the web server. A domain name is used instead of an IP address because it's easier for humans to remember. For example, it's easier to remember "computerhope.com" than it is to remember an IP address like "216.58.216.164". See our IP address for further information about an IP.

Tip

You could think of a domain name like a house picture and the IP address as the house's address. The picture gives you a representation of what the house looks like, but without the address, you'd never be able to locate that house.

Address, Computer acronyms, cURL, Internet, Internet terms, Intranet, IP, Naked URL, SEO terms, URI, URL Shortener, Web design terms, Whack

What is your URL number?

A URL (Uniform Resource Locator) is a unique identifier used to locate a resource on the Internet. It is also referred to as a web address. URLs consist of multiple parts -- including a protocol and domain name -- that tell a web browser how and where to retrieve a resource.

How do I get my URL?

Get a page URL.
On your Android phone or tablet, open the Chrome app. or Firefox app..
Go to google.com..
Search for the page..
In search results, tap the title of the page..
Copy the URL based on your browser: Chrome: Tap the address bar. Below the address bar, next to the page URL, tap Copy ..

What is a URL and where is it located?

The location of a webpage or file on the Internet. Some of Google's URLs include www.google.com, adwords.googleblog.com, and http://www.google.com/intl/en/privacy. Just as buildings and houses have a street address, webpages also have unique addresses to help people locate them.