Ich hab auf dem Mailserver mehrere Seiten laufen, jeweils aufrufbarIP/roundcubeIP/maiaIch hab jetzt einiges durchprobiert, momentan bekomme ich immer ein 404 url was not found on this servermeinen roundcube.conf unter apache24/Includes<VirtualHost *:80>ServerName webmail.meinedomain.de Alias / "/usr/local/www/roundcube/" <Directory "/usr/local/www/roundcube"> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory>RewriteEngine onRewriteCond %{HTTP_HOST} ^webmail\.meinedomain\.de$/roundcube/RewriteRule ^/(.*) https://webmail.meinedomain.de/$1 [R]</VirtualHost>oder aber RewriteEngine onmit:"RedirectMatch ^/$ http://webmail.meinedomain.de/roundcube"oder:RewriteRule ^/$ http://subdomain.domain.com/folder/ [R,L]oder ohne alias:<VirtualHost *:80>ServerName mail.meinedomain.deServerAlias webmail.meinedomain.de <Directory "/usr/local/www/roundcube"> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory>RewriteEngine onRewriteCond %{HTTP_HOST} ^webmail\.meinedomain\.de$RewriteRule ^/(.*) https://webmail.meinedomain.de/$1 [R]/roundcube/</VirtualHost>/roundcube/Es will partout nicht klappen.