Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Happens If a URL Starts with Path or File name
What Happens If a URL Starts with Path or File name? - XHTML 1.0 Tutorials - Understanding Hyper Links and URLs
✍: 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
2007-05-12, 5013👍, 0💬
Popular Posts:
How To Define a Data Source Name (DSN) in ODBC Manager? - Oracle DBA FAQ - ODBC Drivers, DSN Configu...
what are the advantages of hosting WCF Services in IIS as compared to self hosting? There are two ma...
What Articles Have You Read about JUnit? There are a number of JUnit articles that you should read: ...
Can each Java object keep track of all the threads that want to exclusively access to it?
If client side validation is enabled in your Web page, does that mean server side code is not run? W...