If your controller doesn't have an index function at all, you could add something like this to one of your models:
if request.controller = 'mycontroller' and request.function == 'index':
request.function = 'myfunction'
So that if someone tries to go to /mycontroller or /mycontroller/index, they
will get the 'myfunction' function instead.

