|
The Situation:
"I have an index.htm and an index.asp in my web, but when
users try to access the site, their browser brings up the wrong page! I want the web server to deliver index.asp by default, not index.htm. What do I do?"
Suggested Action:
Since IIS (Internet Information Server) supports multiple default document names, having more than one document
with one of those accepted names in a single directory confuses IIS. IIS remedies the situation by only displaying the first document it encounters with one of those accepted
names. To fix the problem, make sure that the desired default document is the only document in its home directory that has a "default name." Other files with "default names"
(default.htm, index.htm, index.asp, default.asp, index.html, etc.) should be renamed.
Valid default docuemnts are (in this order):
default.asp, default.htm, default.html, index.asp,
index.htm, index.html, home.asp, home.htm, home.html
|