12-29-2020, 12:54 PM
Changing the server configuration to redirect http://www.waterlooregionconnected.com/X to https://www.waterlooregionconnected.com/X for every X would be helpful. If the site is using Apache, put the following (and almost nothing else) in the HTTP virtual host:
Redirect permanent / https://www.waterlooregionconnected.com/
Put all the actual site configuration (including document root, etc.) in the HTTPS virtual host only.
Also, links within the site don't need to mention either the protocol or the hostname - just use root-relative links (e.g. href="/asdf", not href="https://www.waterlooregionconnected.com/asdf").
Redirect permanent / https://www.waterlooregionconnected.com/
Put all the actual site configuration (including document root, etc.) in the HTTPS virtual host only.
Also, links within the site don't need to mention either the protocol or the hostname - just use root-relative links (e.g. href="/asdf", not href="https://www.waterlooregionconnected.com/asdf").

