How do I redirect users to the SSL version of my site?
|
|
If you are using File Manager to edit your files, you may need to click "Settings" and "Show Hidden Files (dotfiles)" if you do not see a file named .htaccess in your public_html folder. If you run into "insecure content" or mixed-content warnings, that means some resources on your page are hardcoded using static URLs that start with http:// rather than relative urls. You just need to go through your site's code or database to find these. You can use View Source in your browser and search for the string "http://" to find the resource that is being accessed over HTTP. If you are using WordPress and have a lot of hard-coded URLs, you can use the plugin Better Search and Replace to update these URLs. | |
|