tags:

views:

202

answers:

2

Is it possible to configure Resin to serve static files such that navigating to e.g. http://localhost:8888/foo/bar/ will serve the file foo/bar/index.html (without performing a redirect)? I can't find the answer in the Resin docs, though I might be looking in the wrong place.

The equivalent in Apache would be the DirectoryIndex directive.

+1  A: 

Maybe I don't get the question, but welcome-file-list seems to do just that?

Benjamin Podszun
A: 

It looks like the welcome-file-list tag is used to specify this. See http://caucho.com/resin/doc/webapp-tags.xtp#welcome-file-list

Anders Westrup