Forum Moderators: open
The site's gotten big enough, and it's been long enough since I first built it, that I've forgotten exactly what a lot of the files are... ;) That little distinction saves me quite a bit of hassle.
1. Put an index.htm and index.html file on two web servers
2. Open location http*//www.widget.com/test/
On two different OS and server combinations, in both cases the .html opened.
Potential use: I've started using .html for just my en-GB pages and making new .htm pages for my en-US stuff, with alternate lang link tags. I've already seen one bot jump this gap. Naturally, I shall also Americanise widgetiser.html to widgetizer.htm too ;¬}
On a UNIX box there is always the potential for .HTML / .HTM / .Html / .Htm too ... French / Spanish / Portugese / Italian?
[edited by: korkus2000 at 9:03 pm (utc) on Dec. 5, 2002]
[edit reason] Delinked URL [/edit]
This depends on the server configuration. With Apache,
for example, this is set by the DirectoryIndex directive
in the server configuration file. My server has
DirectoryIndex index.html index.html.var index.htm
which is the default that ships with Apache 2.0.x.
It means look first for index.html, then for
index.html.var, then for index.htm. If none of those
exist, and if "Options Indexes" is turned on for that
directory, Apache generates its own directory listing;
otherwise, it sends an error page.
The server administrator can modify this configuration
if s/he likes.
[edited by: korkus2000 at 9:02 pm (utc) on Dec. 5, 2002]
[edit reason] delinked URL [/edit]
[webmasterworld.com...]