GNU/Linux >> Linux Esercitazione >  >> Linux

Come reindirizzare automaticamente HTTP a HTTPS sui server Apache?

In realtà ho seguito questo esempio e ha funzionato per me :)

NameVirtualHost *:80
<VirtualHost *:80>
   ServerName mysite.example.com
   Redirect permanent / https://mysite.example.com/
</VirtualHost>

<VirtualHost _default_:443>
   ServerName mysite.example.com
  DocumentRoot /usr/local/apache2/htdocs
  SSLEngine On
 # etc...
</VirtualHost>

Quindi esegui:

/etc/init.d/httpd restart


RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI}

http://www.sslshopper.com/apache-redirect-http-to-https.html

o

http://www.cyberciti.biz/tips/howto-apache-force-https-secure-connections.html


Linux
  1. Come forzare Apache a usare HTTPS

  2. Reindirizzamento a HTTPS

  3. Come reindirizzare da http a https usando .htaccess?

  4. Come proteggere Apache con Lets Encrypt su Ubuntu 18.04

  5. Come configurare l'host virtuale apache su ubuntu

Come abilitare HTTP/2 in Apache su Ubuntu

Come reindirizzare il tuo sito Web da HTTP a HTTPS?

Come abilitare il reindirizzamento HTTPS forzato in cPanel

Come abilitare HTTP/2 in Apache su sistema Linux

Come abilitare HTTP/2 con Apache in Ubuntu

Come configurare Nginx come loadbalancer per Apache o Tomcat per HTTP/HTTPS