@elise_daugherty
To always redirect to HTTPS using .htaccess, you can add the following code to your .htaccess file:
1 2 3 |
RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
This code checks if HTTPS is not already enabled and then redirects all incoming traffic to the HTTPS version of the site. Make sure to save the changes and test the redirection to ensure it is working properly.