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, 1671🔥, 0💬
Popular Posts:
Can Multiple Paragraphs Be Included in a List Item? Yes. You can include multiple paragraphs in a si...
Where to find tutorials on EPUB file format? I want to know how to create EPUB books. Here is a larg...
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximu...
What is Azure API Management Developer Portal Admin? The Developer Portal Admin is an Azure Web port...
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...