3
Below is the code to force www and https at the url of the page using htaccess, who need it, for me it worked right. Hugs
RewriteEngine On
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\.site\.com\.br$ [NC]
RewriteRule ^(.*)$ https://www.site.com.br/$1 [L,R=301]
I am voting to close this question as out of scope because it is not a question.
– MagicHat