Edgewall Software

Changes between Version 10 and Version 11 of TracPrettyUrls


Ignore:
Timestamp:
May 23, 2006, 12:00:39 PM (18 years ago)
Author:
Adam Jacob Muller <adam@…>
Comment:

this is also better

Legend:

Unmodified
Added
Removed
Modified
  • TracPrettyUrls

    v10 v11  
    3535}}}
    3636
    37 '''Also Note:''' Another simple way to do this is to put a redirect in {{{/usr/share/trac/htdocs}}}, such as:
     37'''Also Note:''' Another simple way to do this is to put a redirect in {{{/usr/share/trac/htdocs/index.html}}}, such as:
    3838
    39 {{{<META HTTP-EQUIV="Refresh" CONTENT="0; URL=http://<yourhostname>/cgi-bin/trac.cgi">}}}
     39{{{<META HTTP-EQUIV="Refresh" CONTENT="0; URL=/cgi-bin/trac.cgi">}}}
     40
     41or put the following in /usr/share/trac/htdocs/index.php if your server supports php to enable a transparent redirect.
     42<?php
     43header("Location: /cgi-bin/trac.cgi");
     44?>
    4045
    4146----