Tools, FAQ, Tutorials:
Relative Path Name of a URL
What Is a Relative Path Name?
✍: FYIcenter.com
A relative path name is a path name that starts without the leading slash "/". If a relative path name is used in a URL, the relative path name will be replaced with the current document path name appended with the specified relative path name.
If "." or ".." is used in path names, it will be interpreted as "current directory" or "parent directory" respectively. For example, if the following URLs are used in this document you are viewing right now:
./index.html ../index.html ../../index.html ../../faq/css/index.html image/fyi.jpg
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 URLs:
http://dev.fyicenter.com:80/faq/xhtml/index.html http://dev.fyicenter.com:80/faq/index.html http://dev.fyicenter.com:80/index.html http://dev.fyicenter.com:80/faq/css/index.html http://dev.fyicenter.com:80/faq/xhtml/image/fyi.jpg
2017-07-07, 1553🔥, 0💬
Popular Posts:
Where to find tutorials on RSS specifications? I want to learn it to describe my API services. Here ...
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
How to access Query String parameters from "context.Request.Url.Que ry"object in Azure API Policy? Q...
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximu...
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...