[Zope] File storage question.
Dieter Maurer
dieter@handshake.de
Sat, 28 Apr 2001 23:44:13 +0200 (CEST)
Allen.Vailliencourt@channelmaxinc.com writes:
> I created a sub directory
> (http://localhost/coolness) and had to name the main file index_html. Is the _ the default? Can I
> rename the file index.htm or default.htm?
You can give it these names but Zope will only automatically
find an "index_html". There will be no problem, when
you explicitly reference them in the URL:
http://localhost/coolness
will only publish "http://localhost/coolness/index_html"
but
http://localhost/coolness/index.htm
will publish "http://localhost/coolness/index.htm".
Dieter