Hi all,<br><br>When clicking on a ticket that's placed in my personal 10 highest priority tickets that I own, it seems the URL doesn't properly rewrite itself. It tries to hit:<br><br><a href="http://rt.foo.com/Ticket/Display.html?id=12">
http://rt.foo.com/Ticket/Display.html?id=12</a><br><br>This results in a 404.<br><br>The correct URL would be:<br><br><a href="http://rt.foo.com/rt/Ticket/Display.html?id=12">http://rt.foo.com/rt/Ticket/Display.html?id=12
</a><br><br>I don't have any rewrite rules or redirects in my apache config. Here's what the VirtualHost excerpt looks like:<br><br><VirtualHost *:80><br>   ServerName <a href="http://rt.foo.com">rt.foo.com</a>
<br>   Alias /rt "/opt/rt3/share/html"<br>   PerlModule Apache2::compat<br>   PerlModule Apache::DBI<br>   PerlRequire /opt/rt3/bin/webmux.pl<br><Directory /opt/rt3/share/html><br>  AllowOverride All<br>  Options ExecCGI FollowSymLinks
<br>  <IfModule mod_access.c><br>        Order allow,deny<br>      Allow from all<br>  </IfModule><br></Directory><br><br><Location /rt><br>  AddDefaultCharset UTF-8<br>  SetHandler perl-script<br>
  PerlHandler RT::Mason<br></Location><br><br></VirtualHost><br><br>Thanks for any input!<br><br>- Steve<br>