This question is not a duplicate of any other, please read in full. I have scoured the whole internet for answers.
We want our whole website to display as https://www
Basically https:// will not redirect to https://www
Thought i'd fixed the issue with this...
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI}$1 [R=301,L]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI}$1
but when we do this the homepage redirects work fine but every other page has the end of the url repeated twice for example /printing.htmlprinting.html
How can we get everything to display for https://www