Folks, I'm trying to grapple with something which is making my head spin. I wonder if someone might have an idea on this.
It's well understood, that a webserver can supply a specified file, by default, if no page is specified on the URL:
eg.
http://www.london.edu/index.html
can be requested by the URL
http://www.london.edu/
because index.html is configured as a default page.
I'm trying to discover if Apache offers the feature to specify the default page on a folder-by-folder basis.
eg.
http://www.london.edu/index.html
can be requested by the URL
http://www.london.edu/
by configuring index.html as a default page for the root folder.
and also
http://www.london.edu/phd/phd.html
can be requested by the URL
http://www.london.edu/phd/
by configuring phd.html as a default page for the phd folder.
and also
http://www.london.edu/mba/mba.html
can be requested by the URL
http://www.london.edu/mba/
by configuring mba.html as a default page for the mba folder.
etc.
I'm not sure if I'm reading it right, but this page may have some bearing.
http://httpd.apache.org/docs-2.0/mod/mod_dir.html
Many thanks for any light you can shed on this. I'm certainly in the dark.