|
 |
 |
|
 |
Making up your files. |
|
You can make your files easily using a text editor or web authoring tool software. |
 |
Some advice on naming your files. |
|
Your homepage (the top page of your website) should be given the file name "index.html" or "index.htm". That is the default file name that the server automatically uses to locate the homepage, and so if you use "index.html" or "index.htm" as the file name for your homepage, there is no need to include it as part of your URL. If, however, you use anything other than "index.html" or "index.htm" as the file name of your homepage, the file name you use must be added to your URL.
|
** example ** |
If your home directory is "/yellow/abc", and... |
|
1. You named your homepage "index.html" or "index.htm". |
|
 |
URL = http://given server name/yellow/abc |
|
|
|
2. You named your homepage "myhomepage.html". |
|
 |
URL = http://given server name/yellow/abc/myhomepage.html |
As for other pages on your website, you may use any file names you wish. Upper-case letters "A-Z", lower-case letters "a-z", numbers "0-9" and marks"-_." can be used for file names. Your user path name will be case-sensitive.
|
|