= 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] }}} Or using !ScriptAliasMatch you can redirect all request coming to / without rewriting the URL to the user: {{{ SetEnv TRAC_ENV "/var/to/trac" ScriptAliasMatch ^/(.*) /path/to/trac.cgi/$1 }}} '''Also Note:''' Another simple way to do this is to put a redirect in {{{/usr/share/trac/htdocs}}}, such as: {{{}}} ---- See also: TracInstall, TracMultipleProjects, [http://projects.edgewall.com/trac/wiki/TracFaq#how-can-i-create-a-nice-url-to-access-trac-cgi TracFaq: "How can I create a nice URL to access trac.cgi?"]