Quote:
Originally Posted by DaveTomneyUK
|
Assuming you have apache compiled with mod_rewrite, put the following in your .htaccess file...
RewriteEngine on
RewriteRule ^webmail horde3
RewriteRule ^mail qmailadmin
This assumes that nothing appears after mail, so its not mail/somefile.php?foo=bar
If you want to keep the stuff after mail, use
RewriteEngine on
RewriteRule ^webmail/(.*) horde3/$1
RewriteRule ^mail/(.*) qmailadmin/$1