Hi everyone, how can i do it so when people wants to check there emails so it goes to let say webmail.hisdomain.com with out the https://www.mydomain.com:81/roundcube and still utilizing roundcube...
__________________ Danke für Ihre Hilfe
AngelDrago
Sounds like an Apache mod_rewrite rule is needed. Unfortunately, I forget the syntax. I think this should work. Put it in the Apache Directives field on the Basis tab for the web site in question
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^webmail\. [NC]
RewriteRule ^/(.*) http://%{HTTP_HOST}:81/roundcubemail/$1 [R]
Edited: forgot to account for you using roundcube instead of the other one.
Recent comments
16 hours 28 min ago
17 hours 27 min ago
21 hours 14 min ago
22 hours 28 min ago
1 day 2 hours ago
1 day 9 hours ago
1 day 18 hours ago
1 day 19 hours ago
2 days 10 hours ago
2 days 13 hours ago