JJL wrote:

> So, when I acess http://trac.mydomain.com/ I have a list of my
> projects and I can access to every trac functions for each of them.
> But url are http://trac.mydomain.com/trac.fcgi/project1,
> http://trac.mydomain.com/trac.fcgi/project2/browser
> <http://trac.mydomain.com/trac.fcgi/project2/browser> ...  And I
> find this 'trac.fcgi' quite ugly in the url :( I would prefer some
> http://trac.mydomain.com/project2/browser
>
> Is there a way to get rid of it ?

  The easiest way is to add a Request entry to your configuration
  file, although it's more a work around than a proper solution.

  This should be enough (add it after the "Extension fcgi" entry):

=======
  Request "^/trac.fcgi/(.*)$" {
    Handler redir {
      Rewrite "/$1"
    }
  }
=======

-- 
Greetings, alo.
http://www.alobbs.com
_______________________________________________
Cherokee mailing list
[email protected]
http://www.0x50.org/cgi-bin/mailman/listinfo/cherokee

Reply via email to