= Prettier URLs for Trac = If you would like the url to be like: http:/// or (maybe with a subdomain): http://./ this is one way, using mod_rewrite (in Apache): load the module mod_rewrite, then, place this in your apache config: (if you have subdomain, inside a !VirtualHost) {{{ RewriteEngine On SetEnv TRAC_ENV "/path/to/trac/env" ServerName Alias /trac "/usr/share/trac/htdocs" ScriptAlias /cgi-bin /path/to/cgi-bin RewriteRule ^/$ /cgi-bin/trac.cgi [R] }}} '''Note:''' This is actually not necessary. You can just use ScriptAliasMatch directly. I'll add an example later. -- DanielLundin ---- See also: TracInstall, TracMultipleProjects