jueves, 3 de diciembre de 2015

Debian + Apache + Redirect HTTP to HTTPS



1.- Habilitar módulo Rewrite en Apache:

server# a2enmod rewrite

2.- Agregar las siguientes lineas al archivo "default" de apache:

server# vi /etc/apache2/sites_available/000-default.conf


RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}


Fuente: FaqForge

No hay comentarios: