I currently have a CNAME DNS entry that points my www to my static site. However, the default behavior of that site is HTTP. For example, inputting mywebsite.com into my address bar will take me to http://mywebsite.com. What kind of DNS entry should I add to change the default from http://mywebsite.com to https://mywebsite.com? Note that entering https://mywebsite.com into the address bar works as HTTPS has been set up.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Let me add, if you are using nginx, you need to add the following to you rewrite config file: if ($scheme = ‘http’) { rewrite ^/(.*)$ https://mywebsite.com/$1 permanent; }
What type of web server are you running?
If you are using Apache, add the following to your .htaccess file:
DNS can’t be used for this purpose. You should look into Strict Transport Security instead.