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, 1676🔥, 0💬
Popular Posts:
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
Where to find EPUB Sample Files? Here is a list of EPUB sample files collected by FYIcenter.com team...
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special char...
Where to find tutorials on RSS specifications? I want to learn it to describe my API services. Here ...
How to use the "return-response" Policy statement to build the response from scratch for an Azure AP...