Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.