Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 4610👍, 0💬
Popular Posts:
What is difference between custom JSP tags and JavaBeans? Custom JSP tag is a tag you defined. You d...
How To Avoid the Undefined Index Error? - PHP Script Tips - Processing Web Forms If you don't want y...
How will you freeze the requirement in this case? What will be your requirement satisfaction criteri...
How comfortable are you with writing HTML documents entirely by hand? Everyone has a different prefe...
What is the output of printf("%d")? 1. When we write printf("%d",x); this means compiler will print ...