I need to redirect folder example.com/mail/ to mail.example.com. This is a temporary solution, I am migrating webmail from an alias to its own subdomain, but I do not wish to disturb current users who use the /mail/ alias.
As this is a multi-domain environment, I need the redirection to be dynamic, eg.:
# Redirect any request to /mail/ to the mail subdomain on this same host
RewriteRule ^mail/(.*?) mail.%{SERVER_NAME}/$1 [L]
This works fine with example.com/mail/, which gets redirected to mail.example.com.
The problem with this is, if I try access the mail at www.example.com/mail/, I get redirected to mail.www.example.com which doesn't work. Is there any method I can use to get just the actual host part?