I have multiple websites on one Magento install. Three of these sites have different SSL certificates. SNI is not an option so we decided to use different ports to handle the requests.
In Virtual Hosts config, each site that uses SSL is assigned a different port.
"https://domain1.com" -> Standard 443
"https://domain2.com:444"
"https://domain3.com:445"
These requests work fine if you go to them directly. Magento handles all its requests properly.
Here is the rub:
If you go to "https://domain2.com" without the port number you trigger the Virtual Host Configuration for domain1.com.
I need a way to catch all requests to https://domain2.com and redirect them to https://domain2.com:444.
There has to be a way to do this with mod_rewrite or mod_proxy.