= 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 '''Also Note:''' Another simple way to do this is to put a redirect in {{{/usr/share/trac/htdocs}}}, such as: {{{}}} ---- See also: TracInstall, TracMultipleProjects