Salve ho un dubbio ho usato questo codice nel file .htaccess per passare ad https, la migrazione è già avvenuta.

RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} off
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]


L'url del mio sito è:

https://www.nomesito.it

sbaglio o questa redirect é sbagliata va a https://nomesito.it senza www?

come faccio a sistemare se è sbagliata?


grazie