Scenario:
We have an AbleCommerce (ASP.NET e-commerce CMS) website which needs SSL (obviously) but is hosted on a server which can only have 1 internal IP address. This would usually be fine, as we can add an external IP and destination NAT the external port 443 to the server's port 4433, for example. This works for other websites, perfectly well.
Problem:
When we visit the site at https://site/
, the browser is redirected (by way of a HTTP 301) to https://site:4433/
(which is of course inaccessible to the outside world).
The Question:
Is there any way to configure AbleCommerce to not redirect the user and just use the URL it was accessed by?
Thanks in advance!