Knowledgebase: Hosting
Abilitare SSL in Drupal
Pubblicato da Andrea A. il 05 October 2017 12:42 PM

Per abilitare SSL in Drupal è necessario modificare il file .htaccess presente nella public_html ed inserire le seguenti stringhe.

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Dopo che sono state inserite salviamo il nostro file .htaccess.
Ora se andremo sul nostro dominio sarà indirizzato sotto HTTPS questo perchè seeoux da la possibilità a tutti i suoi account di avere il certificato Let's Encrypt già incluso gratuitamente,
per maggiore chiarezza visitate il seguente link http://blog.seeoux.com/lets-encrypt-e-come-si-configura/
(0 voto/i)
Utile
Non è utile

Commenti (0)