Tools, FAQ, Tutorials:
URL Starts with Path or File name
What Happens If a URL Starts with Path or File name?
✍: FYIcenter.com
If a URL starts with a path name, the browser will
borrow the protocol name, the host name, and the port number from the URL of
the current document to make up the missing parts. For example,
if the following URL is used in this document you are viewing right now:
/faq/xhtml/index.html
your browser will borrow the protocol name, the host name, and the port number from the URL of this document, and produce the following URL:
http://dev.fyicenter.com:80/faq/xhtml/index.html
If a URL starts with a file name, the browser will borrow the protocol name, the host name, the port number, and the path name from the URL of the current document to make up the missing parts. For example, if the following URL is used in this document you are viewing right now:
index.html
your browser will borrow the protocol name, the host name, the port number, and the path name from the URL of this document, and produce the following URL:
http://dev.fyicenter.com:80/faq/xhtml/index.html
2017-07-07, ∼2114🔥, 0💬
Popular Posts:
How to use "link" command tool to link objet files? If you have object files previously compiled by ...
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutoria...
What is EPUB 3.0 Metadata "dc:description" Element? EPUB 3.0 Metadata "dc:description" is an optiona...