<FONT face="Default Sans Serif,Verdana,Arial,Helvetica,sans-serif" size=2><div>Under the global section of my virtual host (apache2), I have:<br><br>RewriteEngine on<br>RewriteRule ^/rt$ /<br><br>It works when I hit the old /rt url before I log in.  I am presented with the log in page.  However, when I log in, I immediately get "the page you requested could not be found" in the middle of the page.  However, the rest of the GUI loads.  Clicking home then clicking on a ticket link with the old /rt portion yields the same error.<br><br>Checking the rewrite log it appears that mod_rewrite is doing its job, but RT isn't playing along.  I've included my apache 000-default file below.<br><br>Ideas?<br><br>-Landy<br><br><VirtualHost *:80><br>        ServerName rt.thecrosbygroup.com<br>        ServerAdmin landybible@thecrosbygroup.com<br><br>        DocumentRoot /opt/rt3/share/html<br><br>        AddDefaultCharset UTF-8<br><br>        PerlModule Apache::DBI<br>        PerlRequire /opt/rt3/bin/webmux.pl<br><br>        RewriteEngine on<br>        RewriteRule ^/rt$ /<br>        RewriteLog "/tmp/rewrite.log"<br>        RewriteLogLevel 2<br><br><Directory /><br>        Options FollowSymLinks<br>        AllowOverride None<br></Directory><br><br><Directory /opt/rt3/share/html><br>    Options Indexes FollowSymLinks MultiViews<br>    AllowOverride None<br>    Order allow,deny<br>    allow from all<br>    SetHandler perl-script<br>    PerlResponseHandler RT::Mason<br></Directory><br><br>ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/<br><br><Directory "/usr/lib/cgi-bin"><br>        AllowOverride None<br>        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch<br>        Order allow,deny<br>        Allow from all<br></Directory><br><br>ErrorLog /var/log/apache2/error.log<br><br># Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn<br><br>#CustomLog /var/log/apache2/access.log combined ServerSignature On<br><br>Alias /doc/ "/usr/share/doc/"<br><Directory "/usr/share/doc/"><br>    Options Indexes MultiViews FollowSymLinks<br>    AllowOverride None<br>    Order deny,allow<br>    Deny from all<br>    Allow from 127.0.0.0/255.0.0.0 ::1/128<br></Directory><br><br></div><font color="#990099">-----"Wayne Richardson" <wayne@fsckin.com> wrote: -----<br><br></font><blockquote style="border-left: 2px solid #000000; padding-right: 0px; padding-left: 5px; margin-left: 5px; margin-right: 0px;">To: LandyBible@thecrosbygroup.com<br>From: "Wayne Richardson" <wayne@fsckin.com><br>Date: 12/14/2008 01:55PM<br>Subject: Re: [rt-users] 3.6.1 -> 3.8.1 - Problem with Saved Searches<br><br><font face="Courier New,Courier,monospace" size="3">Its in the rewrite section in your rt apache config file<br><br>On 12/14/08, LandyBible@thecrosbygroup.com<br><LandyBible@thecrosbygroup.com> wrote:<br>> Hello All,<br>><br>> I'm attempting to move our RT server from 3.6.1 to 3.8.1.  I'm not doing a<br>> actual upgrade, but instead I created a new VM for the new server and did an<br>> install from the latest tarball.<br>><br>> I did an install up to the point where I should initialize the database.  At<br>> that point, I dumped the database from the old server using mysqldump,<br>> imported it into the new server, then followed the instructions in<br>> UPGRADING.mysql to bring the database up to date.<br>><br>> So far so good... I am able to log in and every thing looks normal.<br>><br>> On the old server, the url was of the form: <a href="http://server/rt">http://server/rt</a> but on the new<br>> server it is <a href="http://newserver/">http://newserver/</a> which is preferable.<br>><br>> Now to the problem... on the main page, the links in any saved saved<br>> searches reference <a href="http://newserver/rt/Ticket..">http://newserver/rt/Ticket..</a>. instead of<br>> <a href="http://newserver/Ticket">http://newserver/Ticket</a>.<br>><br>> /rt does not exist on the new server, and everything else works, but saved<br>> searches are broken.<br>><br>> Any ideas how I can fix the searches to not reference /rt anymore?  This is<br>> the only issue standing between me and a new RT server... any help would be<br>> greatly appreciated.<br>><br>> Thanks,<br>><br>> Landy<br>><br><br>-- <br>Sent from my mobile device<br><br><br></font>
</blockquote><br></FONT>