RewriteEngine On # redirect to another server based upon the domain name # mail.example.com RewriteCond %{HTTP_HOST} ^mail.example.com RewriteRule ^/(.*) http://Server2:8081/$1 [P] # Send all other requests here. RewriteRule ^/(.*) http://Server1:8080/$1 [P]