From: Jonathon McKitrick
Subject: Araneida - redirection limit for this URL exceeded
Date: 
Message-ID: <1139104073.633677.259820@g14g2000cwa.googlegroups.com>
I don't want to have to put index.html in the URL.  Is there an option
or notation for the handler that will make http://foo.com go to
http:foo.com/index.html?

From: Luís Oliveira
Subject: Re: Araneida - redirection limit for this URL exceeded
Date: 
Message-ID: <m23bix8t5y.fsf@deadspam.com>
"Jonathon McKitrick" <···········@bigfoot.com> writes:
> I don't want to have to put index.html in the URL.  Is there an option
> or notation for the handler that will make http://foo.com go to
> http:foo.com/index.html?

Araneida has a mailing list. Have a look at:
http://common-lisp.net/project/araneida/

-- 
Luís Oliveira
luismbo (@) gmail (.) com
Equipa Portuguesa do Translation Project
http://www.iro.umontreal.ca/translation/registry.cgi?team=pt
From: Thomas F. Burdick
Subject: Re: Araneida - redirection limit for this URL exceeded
Date: 
Message-ID: <xcvk6c8483d.fsf@conquest.OCF.Berkeley.EDU>
"Jonathon McKitrick" <···········@bigfoot.com> writes:

> I don't want to have to put index.html in the URL.  Is there an option
> or notation for the handler that will make http://foo.com go to
> http:foo.com/index.html?

Yes, redirect it to index.html.

-- 
           /|_     .-----------------------.                        
         ,'  .\  / | Free Mumia Abu-Jamal! |
     ,--'    _,'   | Abolish the racist    |
    /       /      | death penalty!        |
   (   -.  |       `-----------------------'
   |     ) |                               
  (`-.  '--.)                              
   `. )----'                               
From: Jonathon McKitrick
Subject: Re: Araneida - redirection limit for this URL exceeded
Date: 
Message-ID: <1140267706.896797.178200@o13g2000cwo.googlegroups.com>
Thomas F. Burdick wrote:
> "Jonathon McKitrick" <···········@bigfoot.com> writes:
>
> > I don't want to have to put index.html in the URL.  Is there an option
> > or notation for the handler that will make http://foo.com go to
> > http:foo.com/index.html?
>
> Yes, redirect it to index.html.

I've been banging my head against a wall trying to figure this one out.
 Would you please just spoonfeed it to me?

I have:
(install-handler (http-listener-handler *listener*)
		   (make-instance 'redirect-handler :location (urlstring (merge-url
*my-url* "/index.html")))
		   (urlstring *my-url*) nil)

And this is giving me redirect limit exceeded messages.