URL Syntax
- scheme:
- //server
- [:port]
- [/path]
- [/program?q=argument]
- [#fragment]
schemes
notes
-
a http server listens to (URL default) port 80:
http://www.google.com =
http://www.google.com:80
-
program (dynamic HTML), e.g.,
a CGI script at the server returning HTML
(that is, transparent to client) after querying database
- fragment at client side
- server/~joe = User Joe's stuff @ server/public_html/joe
- path/directory = path/directory/index.html (or index.php)
Return to the main page.