GNU/Linux >> Tutoriales Linux >  >> Linux

¿Cómo redirigir automáticamente HTTP a HTTPS en servidores Apache?

De hecho, he seguido este ejemplo y funcionó para mí :)

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>

Luego haz:

/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. Redirigir a HTTPS

  2. Redirige tu sitio HTTP a HTTPS

  3. ¿Cómo redirigir http a https usando .htaccess?

  4. Cómo asegurar Apache con Lets Encrypt en Ubuntu 18.04

  5. Cómo configurar el host virtual apache en ubuntu

Cómo habilitar HTTP/2 en Apache en Ubuntu

¿Cómo redirigir su sitio web de HTTP a HTTPS?

Cómo habilitar Forzar redirección HTTPS en cPanel

Cómo habilitar HTTP/2 en Apache en el sistema Linux

Cómo habilitar HTTP/2 con Apache en Ubuntu

Cómo configurar Nginx como equilibrador de carga para Apache o Tomcat para HTTP/HTTPS